/* MedNest Global Styles */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Card Enhancements */
.card {
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Button Enhancements */
.btn {
    border-radius: 5px;
    font-weight: 500;
}

.btn-lg {
    padding: 12px 24px;
}

/* Alert Styles */
.alert {
    border-radius: 5px;
}

/* Table Styles */
.table thead th {
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Sidebar Toggle for Mobile */
@media (max-width: 767.98px) {
    .sidebar {
        position: fixed;
        top: 56px;
        left: -250px;
        width: 250px;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .sidebar.show {
        left: 0;
    }

    .content-wrapper {
        margin-left: 0 !important;
    }
}

/* DataTables Responsive */
.dataTables_wrapper .dataTables_filter input {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 5px 10px;
}

/* Custom Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Status Badges */
.badge-active { background-color: #27ae60; }
.badge-inactive { background-color: #95a5a6; }
.badge-pending { background-color: #f39c12; }
.badge-suspended { background-color: #e74c3c; }
.logo-img {
    width:140px;
}

.btn-success {
    background-color: #5fca54;
    border-color: #5fca54;
}

.hero-section {
    background: linear-gradient(135deg, #70cf63 0%, #379c2b 100%);
}

.border-success {
    border-color: #5fca54 !important;
}

.bg-success {
    background-color: #5fca54 !important;
}

.text-success {
    color: #5fca54 !important;
}

.btn-outline-success {
    color: #5fca54;
    border-color: #5fca54;
}

.badge-success {
    color: #fff;
    background-color: #5fca54;
}