@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    background-color: #f4f6f9;
    font-family: 'Poppins', sans-serif;
    color: #444;
}

.navbar {
    background: linear-gradient(135deg, #0d6efd, #0043a8);
}

.card {
    border-radius: 12px;
    transition: transform 0.2s;
}
.card-hover:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-light-blue { background-color: #e0eeff; }
.bg-light-green { background-color: #dffff0; }
.bg-light-red { background-color: #ffe0e0; }
.bg-light-orange { background-color: #fff6d6; }

.bg-gradient-control {
    background: linear-gradient(to right, #ffffff, #f0f8ff);
    border-left: 5px solid #0d6efd;
}

.table th {
    font-size: 0.85rem;
    text-transform: uppercase;
}
.table td {
    font-size: 0.9rem;
}