/* Custom styles */
body {
    background-color: #f8f9fa;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
}

.badge {
    font-weight: 500;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 300;
}

/* Custom button styles */
.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2e59d9;
}

/* Custom card header styles */
.card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
}

/* Custom table styles */
.table {
    margin-bottom: 0;
}

.table th {
    border-top: none;
    font-weight: 600;
    color: #5a5c69;
}

.table td {
    vertical-align: middle;
}

/* Custom modal styles */
.modal-content {
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
}
/* Top Bar Styles */
.dashboard-topbar {
    height: 70px;
    z-index: 1030;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.user-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

/* URGENCY LEVEL BADGE STYLES */
.table-responsive .bg-primary, .card .bg-primary /* standard */ { 
    background-color: #007bff !important;
    color: #ffffff !important;
    padding: 5px 10px !important;
    font-weight: bold !important;
}

.table-responsive .bg-warning, .card .bg-warning /* Soon */{
    background-color: #f6c23e !important;
    color: #000000 !important;
    padding: 5px 10px !important;
    font-weight: bold !important;
}

.table-responsive .bg-danger, .card .bg-danger  /* Urgent */ {
    background-color: #e74a3b !important;
    color: #ffffff !important;
    padding: 5px 10px !important;
    font-weight: bold !important;
}

/* BADGE MOBILE STYLES */
@media (max-width: 768px) {
    .card .info1, .card .info2, .card .info3 {
        margin-left: 0px !important;
        margin-right: 0px !important;
        font-size: 14px !important;
        margin-bottom:5px !important;
    }
}