
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    background-color: #f4f7f9;
}

.bg-light-medical {
    background: linear-gradient(135deg, #f4f7f9 0%, #e0eaf5 100%);
}


.logo-img {
    max-width: 350px;
    height: auto;
}

.error-card {
    max-width: 500px;
    border-radius: 12px;
}

.main-menu-card {
    max-width: 450px;
    width: 100%;
    border-radius: 16px;
    background-color: #ffffff;
}


.custom-btn {
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2b6cb0;
    border-color: #2b6cb0;
}

.btn-primary:hover {
    background-color: #1a4a7d;
    border-color: #1a4a7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.2);
}

.btn-outline-primary {
    color: #2b6cb0;
    border-color: #2b6cb0;
}

.btn-outline-primary:hover {
    background-color: #2b6cb0;
    color: #fff;
}

.btn-outline-success {
    color: #2f855a;
    border-color: #2f855a;
}

.btn-outline-success:hover {
    background-color: #2f855a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 133, 90, 0.2);
}

.download-link {
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-link:hover {
    color: #2b6cb0 !important;
}


input[type=text], 
input[type=password], 
input[type=date], 
input[type=email], 
select, 
textarea {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 10px 15px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input[type=text]:focus, 
input[type=password]:focus, 
input[type=date]:focus, 
input[type=email]:focus, 
select:focus, 
textarea:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(43, 108, 176, 0.25);
    background-color: #fbfcff; 
}


table {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

th {
    background-color: #2b6cb0 !important;
    color: white !important;
    font-weight: 600;
    padding: 12px 15px;
}

td {
    padding: 12px 15px;
    vertical-align: middle;
}


.footer {
    background-color: #2b6cb0;
    color: white;
    padding: 20px 0;
    font-size: 0.9rem;
}

.custom-scrollbar::-webkit-scrollbar {
    height: 14px;
    width: 14px;  
    display: block;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #b0c4de; 
    border-radius: 8px;
    border: 3px solid #f8f9fa;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #2b6cb0;
}


.custom-scrollbar {
    scrollbar-width: auto;
    scrollbar-color: #b0c4de #f8f9fa;
}

@media (max-width: 576px) {
    .main-menu-card {
        border-radius: 0;
        box-shadow: none !important;
        background: transparent;
    }
    .logo-img {
        max-width: 280px;
    }
}