/* Manager Dashboard Styles - Mobile Fix 2025-01-12 */
.clinica-manager-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: #333;
}

/* Extinde și centrează conținutul paginii la 1600px când este prezent dashboard-ul de manager (identic cu Doctor) */
body:has(.clinica-manager-dashboard) .page-content,
body:has(.clinica-manager-dashboard) article.post,
body:has(.clinica-manager-dashboard) .entry-content,
body:has(.clinica-manager-dashboard) .content-area,
body:has(.clinica-manager-dashboard) .site-main,
body:has(.clinica-manager-dashboard) .site-content,
body:has(.clinica-manager-dashboard) .page-container {
    max-width: 1600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
}

/* Micșorează spațiul alb dintre elementele de sus ale temei și header-ul dashboard-ului */
body:has(.clinica-manager-dashboard) .page-content { padding-top: 4px !important; }

/* Forțează lățimea exactă a dashboard-ului și centrează-l */
body:has(.clinica-manager-dashboard) .clinica-manager-dashboard {
    max-width: 1600px !important;
    width: 1600px !important;
    margin: 0 auto !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

/* Header Dashboard */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c5aa0;
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,123,255,0.2);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.manager-info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}


.manager-details h2 {
    margin: 0 0 5px 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.manager-role {
    margin: 0 0 5px 0;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.manager-email {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}



.manager-details h2 {
    margin: 0 0 8px 0;
    color: white;
    font-size: 28px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.manager-details p {
    margin: 4px 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    opacity: 0.9;
}

.dashboard-actions {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.dashboard-actions .button {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    display: inline-block !important;
    cursor: pointer !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.dashboard-actions .button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    text-decoration: none !important;
}

.dashboard-actions .button-secondary {
    background: white !important;
    color: #007bff !important;
    border: 1px solid white !important;
}

.dashboard-actions .button-secondary:hover {
    background: #f8f9fa !important;
    border-color: #007bff !important;
    color: #0056b3 !important;
}

/* DEBUG - Reset stiluri default browser pentru butoane */
.clinica-manager-dashboard button {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font: inherit !important;
    color: inherit !important;
    text-decoration: none !important;
    cursor: pointer !important;
    outline: none !important;
}

/* DEBUG - Stiluri foarte vizibile pentru test */
.clinica-manager-dashboard .dashboard-nav {
    background: RED !important;
    border: 5px solid YELLOW !important;
    width: 100% !important;
    display: flex !important;
}

.clinica-manager-dashboard .nav-tab {
    background: GREEN !important;
    border: 3px solid BLUE !important;
    color: WHITE !important;
    flex: 1 !important;
    margin-right: 2px !important;
}

/* Navigation Tabs - Bootstrap Style */
.clinica-manager-dashboard .dashboard-nav {
    display: flex !important;
    background: #ffffff !important;
    border-radius: 0.375rem 0.375rem 0 0 !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    border: 1px solid #dee2e6 !important;
    border-bottom: none !important;
    width: 100% !important;
}

.clinica-manager-dashboard .nav-tab {
    flex: 1 !important;
    padding: 0.75rem 0.5rem !important;
    border: 1px solid #007bff !important;
    background: #007bff !important;
    cursor: pointer !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    position: relative !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin-bottom: -1px !important;
    margin-right: -1px !important;
    /* Suprascrie stilurile default ale browserului */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    word-spacing: normal !important;
    line-height: normal !important;
    text-indent: 0 !important;
    text-shadow: none !important;
    text-align: center !important;
    box-sizing: border-box !important;
    background-color: #007bff !important;
    margin: 0 !important;
    padding-block: 0.75rem !important;
    padding-inline: 0.5rem !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: #007bff !important;
    border-image: none !important;
}

.clinica-manager-dashboard .nav-tab:last-child {
    margin-right: 0 !important;
}

.clinica-manager-dashboard .nav-tab::before {
    display: none !important;
}

.clinica-manager-dashboard .nav-tab:hover {
    color: #ffffff !important;
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
}

.clinica-manager-dashboard .nav-tab.active {
    color: #ffffff !important;
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}

.clinica-manager-dashboard .nav-tab i {
    font-size: 1rem !important;
    font-weight: normal !important;
    color: #ffffff !important;
}

.clinica-manager-dashboard .nav-tab:hover i {
    color: #ffffff !important;
}

.clinica-manager-dashboard .nav-tab.active i {
    color: #ffffff !important;
}

/* Dashboard Content */
.dashboard-content {
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: 500px;
    margin-top: 20px;
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Overview Tab */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.dashboard-card:hover::before {
    transform: scaleX(1);
}

.dashboard-card h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.dashboard-card h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.charts-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.chart-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-container h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.activity-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.activity-list::-webkit-scrollbar {
    width: 6px;
}

.activity-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Stiluri pentru activități recente */
.no-activities {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-message {
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.activity-date {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Stiluri pentru badge-uri de rol */
.status-badge.status-clinica_patient {
    background-color: #28a745;
    color: white;
}

.status-badge.status-clinica_doctor {
    background-color: #007bff;
    color: white;
}

.status-badge.status-clinica_assistant {
    background-color: #6f42c1;
    color: white;
}

.status-badge.status-clinica_receptionist {
    background-color: #fd7e14;
    color: white;
}

.status-badge.status-clinica_manager {
    background-color: #dc3545;
    color: white;
}

.status-badge.status-clinica_administrator {
    background-color: #6c757d;
    color: white;
}

/* Îmbunătățiri pentru tabelul de utilizatori */
.users-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.users-table th,
.users-table td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.users-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.users-table tbody tr:hover {
    background-color: #f8f9fa;
}

.users-table .btn-sm {
    padding: 3px 6px;
    margin: 0 1px;
    font-size: 11px;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.users-table .btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.users-table .btn-secondary {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

.users-table .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: white;
}

.users-table .btn-danger {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.users-table .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: white;
}

/* Paginare */
/* Paginare */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    gap: 10px;
}

.pagination button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination button:hover:not(:disabled) {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #6c757d;
    border-color: #e9ecef;
}

.pagination button:disabled:hover {
    transform: none;
    box-shadow: none;
}

.pagination .current-page {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: 600;
}

.pagination-info {
    margin: 0 20px;
    font-size: 14px;
    color: #495057;
    font-weight: 500;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* Stiluri pentru butoanele WordPress */
.dashboard-actions .button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dashboard-actions .button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.dashboard-actions .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.dashboard-actions .button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-item:hover {
    background: #f8f9fa;
    margin: 0 -15px;
    padding: 15px;
    border-radius: 8px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.activity-icon.appointment {
    background: #e3f2fd;
    color: #1976d2;
    border-color: #bbdefb;
}

.activity-icon.user {
    background: #f3e5f5;
    color: #7b1fa2;
    border-color: #e1bee7;
}

.activity-icon.system {
    background: #e8f5e8;
    color: #388e3c;
    border-color: #c8e6c9;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 14px;
}

.activity-time {
    font-size: 12px;
    color: #6c757d;
}

.activity-list {
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.activity-content {
    flex: 1;
}

.activity-message {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.activity-date {
    font-size: 0.8rem;
    color: #666;
}

/* Tab Headers */
.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.tab-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
}

.tab-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Stiluri pentru tab-ul de utilizatori */
#users .tab-header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

#users .users-table-container {
    margin-top: 0;
}

/* Filters - Responsive Layout */
.filters {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

.search-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.search-container input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    color: #333;
}

.search-container input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-container button {
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-container button:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.alphabet-filter {
    margin-top: 0;
}

.alphabet-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
}

.alphabet-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

/* Tables */
.users-table-container,
.appointments-table-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.users-table,
.appointments-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th,
.users-table td,
.appointments-table th,
.appointments-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.users-table th,
.appointments-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.users-table tr:hover,
.appointments-table tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.report-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-card h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.report-content {
    color: #666;
    line-height: 1.6;
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.settings-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.settings-section h3 {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.setting-item {
    margin-bottom: 1rem;
}

.setting-item label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.setting-item input[type="text"],
.setting-item input[type="email"],
.setting-item input[type="tel"],
.setting-item input[type="number"],
.setting-item input[type="time"],
.setting-item select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.setting-item input:focus,
.setting-item select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.setting-item input[type="checkbox"] {
    margin-right: 0.5rem;
}

/* System Grid */
.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.system-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.system-card h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.system-status,
.db-info,
.logs-container,
.backups-list {
    color: #666;
    line-height: 1.6;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

/* Modal pentru editarea pacienților */
.clinica-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.clinica-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

.clinica-modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clinica-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.clinica-modal-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.clinica-modal-close:hover {
    opacity: 0.7;
}

.clinica-modal-body {
    padding: 30px;
}

.clinica-modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
}

.close {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Status Badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}


/* Responsive Design */
@media (max-width: 768px) {
    /* Anulează forțarea la 1600px pe mobil */
    body:has(.clinica-manager-dashboard) .clinica-manager-dashboard {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
    }
    
    .clinica-manager-dashboard {
        padding: 15px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .manager-info-header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .dashboard-actions {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-actions .button {
        width: 100%;
        max-width: 200px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-nav {
        flex-direction: column;
    }
    
    .nav-tab {
        min-width: auto;
    }
    
    .users-table {
        font-size: 0.9em;
    }
    
    .users-table th,
    .users-table td {
        padding: 8px 10px;
    }
    
    .user-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .user-actions {
        justify-content: center;
    }
}
    
    /* Desktop - ascunde mobile menu toggle */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    /* Mobile styles */
    @media (max-width: 768px) {
        .mobile-menu-toggle {
            display: block !important;
            background: #007bff !important;
            color: white !important;
            border: none !important;
            padding: 0.75rem 1rem !important;
            border-radius: 8px !important;
            font-size: 0.9rem !important;
            font-weight: 500 !important;
            cursor: pointer !important;
            width: 100% !important;
            margin: 0.5rem 0 !important;
            transition: all 0.2s ease !important;
        }
        
        .mobile-menu-toggle:hover {
            background: #0056b3 !important;
        }
        
        .mobile-menu-toggle i {
            margin-right: 0.5rem !important;
        }
        
        .mobile-menu {
            display: none !important;
            background: #ffff00 !important;
            border: 3px solid #ff0000 !important;
            border-radius: 8px !important;
            margin-bottom: 1rem !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        }
        
        .mobile-menu.show {
            display: block !important;
        }
        
        .mobile-menu .nav-tab {
            display: block !important;
            width: 100% !important;
            padding: 1rem !important;
            border: none !important;
            border-bottom: 1px solid #eee !important;
            background: transparent !important;
            color: #333 !important;
            text-align: left !important;
            font-size: 0.9rem !important;
            font-weight: 500 !important;
            transition: all 0.2s ease !important;
        }
        
        .mobile-menu .nav-tab:last-child {
            border-bottom: none !important;
        }
        
        .mobile-menu .nav-tab:hover {
            background: #f8f9fa !important;
            color: #007bff !important;
        }
        
        .mobile-menu .nav-tab.active {
            background: #e3f2fd !important;
            color: #007bff !important;
            border-left: 4px solid #007bff !important;
        }
        
        .mobile-menu .nav-tab i {
            font-size: 1rem !important;
            margin-right: 0.75rem !important;
            width: 20px !important;
            text-align: center !important;
        }
        
        .mobile-menu .nav-tab span {
            display: inline !important;
        }
    }
    
    .dashboard-content {
        padding: 1rem;
        margin-top: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .charts-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tab-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .tab-actions {
        justify-content: center;
    }
    
    /* Stiluri pentru tab-ul users pe mobile */
    #users .tab-header {
        text-align: center;
    }
    
    .filters {
        padding: 1rem;
    }
    
    .search-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-container input {
        min-width: auto;
        width: 100%;
    }
    
    .search-container button {
        width: 100%;
    }
    
    .alphabet-buttons {
        gap: 3px;
    }
    
    .alphabet-btn {
        padding: 4px 6px;
        font-size: 11px;
        min-width: 24px;
    }
    
    .users-table,
    .appointments-table {
        font-size: 0.8rem;
    }
    
    .users-table th,
    .users-table td,
    .appointments-table th,
    .appointments-table td {
        padding: 0.5rem;
    }
    
    .reports-grid,
    .settings-grid,
    .system-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dashboard-header h1 {
        font-size: 1.1rem;
    }
    
    .clinica-manager-dashboard .nav-tab {
        padding: 0.4rem 0.15rem !important;
        font-size: 0.55rem !important;
    }
    
    .clinica-manager-dashboard .nav-tab i {
        font-size: 0.7rem !important;
        margin-right: 0 !important;
    }
    
    .dashboard-content {
        padding: 0.5rem;
        margin-top: 10px;
    }
    
    .filters {
        padding: 0.5rem;
    }
    
    .alphabet-btn {
        padding: 2px 4px;
        font-size: 9px;
        min-width: 18px;
    }
    
    .clinica-manager-dashboard .tab-button {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.75rem !important;
        min-width: 100px !important;
        gap: 0.25rem !important;
        margin-right: -1px !important;
    }
    
    .clinica-manager-dashboard .tab-button i {
        font-size: 0.8125rem !important;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 3000;
    animation: slideInRight 0.3s ease;
}

.notification.success {
    background: #27ae60;
}

.notification.error {
    background: #e74c3c;
}

.notification.warning {
    background: #f39c12;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Scrollbar Styling */
.activity-list::-webkit-scrollbar {
    width: 6px;
}

.activity-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.activity-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Stiluri pentru activități recente */
.no-activities {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 14px;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-message {
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.activity-date {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Stiluri pentru badge-uri de rol */
.status-badge.status-clinica_patient {
    background-color: #28a745;
    color: white;
}

.status-badge.status-clinica_doctor {
    background-color: #007bff;
    color: white;
}

.status-badge.status-clinica_assistant {
    background-color: #6f42c1;
    color: white;
}

.status-badge.status-clinica_receptionist {
    background-color: #fd7e14;
    color: white;
}

.status-badge.status-clinica_manager {
    background-color: #dc3545;
    color: white;
}

.status-badge.status-clinica_administrator {
    background-color: #6c757d;
    color: white;
}

/* Îmbunătățiri pentru tabelul de utilizatori */
.users-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.users-table th,
.users-table td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.users-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.users-table tbody tr:hover {
    background-color: #f8f9fa;
}

.users-table .btn-sm {
    padding: 3px 6px;
    margin: 0 1px;
    font-size: 11px;
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.users-table .btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.users-table .btn-secondary {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

.users-table .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: white;
}

.users-table .btn-danger {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.users-table .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: white;
}

/* Paginare */
/* Paginare */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    gap: 10px;
}

.pagination button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    background: white;
    color: #495057;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination button:hover:not(:disabled) {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #6c757d;
    border-color: #e9ecef;
}

.pagination button:disabled:hover {
    transform: none;
    box-shadow: none;
}

.pagination .current-page {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: 600;
}

.pagination-info {
    margin: 0 20px;
    font-size: 14px;
    color: #495057;
    font-weight: 500;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* Stiluri pentru butoanele WordPress */
.dashboard-actions .button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dashboard-actions .button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.dashboard-actions .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.dashboard-actions .button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}
/ *   M a n a g e r   D a s h b o a r d   M o b i l e   F i x   -   0 9 / 1 2 / 2 0 2 5   1 3 : 3 9 : 2 6   * / 
 
 
 
 / *   = = = = =   R A P O A R T E   P E R   M E D I C   -   D E S I G N   P R O F E S I O N A L   = = = = =   * / 
 
 / *   F i l t r e   p e n t r u   r a p o a r t e   * / 
 . r e p o r t s - f i l t e r s   { 
         d i s p l a y :   f l e x ; 
         g a p :   2 4 p x ; 
         a l i g n - i t e m s :   e n d ; 
         m a r g i n - b o t t o m :   3 2 p x ; 
         p a d d i n g :   2 4 p x ; 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o x - s h a d o w :   0   1 p x   3 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . f i l t e r - g r o u p   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   8 p x ; 
         m i n - w i d t h :   1 6 0 p x ; 
 } 
 
 . f i l t e r - g r o u p   l a b e l   { 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         f o n t - s i z e :   1 3 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . f i l t e r - g r o u p   s e l e c t   { 
         p a d d i n g :   1 0 p x   1 2 p x ; 
         b o r d e r :   1 p x   s o l i d   # d 1 d 5 d b ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b a c k g r o u n d :   w h i t e ; 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . f i l t e r - g r o u p   s e l e c t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   # 3 b 8 2 f 6 ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 5 9 ,   1 3 0 ,   2 4 6 ,   0 . 1 ) ; 
 } 
 
 . f i l t e r - g r o u p   . b t n   { 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         b o r d e r :   1 p x   s o l i d   # d 1 d 5 d b ; 
         p a d d i n g :   1 0 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . f i l t e r - g r o u p   . b t n : h o v e r   { 
         b a c k g r o u n d :   # e 5 e 7 e b ; 
         b o r d e r - c o l o r :   # 9 c a 3 a f ; 
 } 
 
 / *   S e c i u n e a   r a p o a r t e l o r   p e r   m e d i c   * / 
 . d o c t o r s - r e p o r t s - s e c t i o n   { 
         m a r g i n - t o p :   4 0 p x ; 
 } 
 
 . d o c t o r s - r e p o r t s - s e c t i o n   h 3   { 
         c o l o r :   # 1 a 1 a 1 a ; 
         m a r g i n - b o t t o m :   2 4 p x ; 
         f o n t - s i z e :   1 8 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # f 1 f 3 f 4 ; 
         p a d d i n g - b o t t o m :   8 p x ; 
 } 
 
 . d o c t o r s - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 3 2 0 p x ,   1 f r ) ) ; 
         g a p :   1 6 p x ; 
         m a r g i n - b o t t o m :   4 0 p x ; 
 } 
 
 / *   C a r d - u r i   p e n t r u   m e d i c i   * / 
 . d o c t o r - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         p a d d i n g :   2 4 p x ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 1 e 5 e 9 ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . d o c t o r - c a r d : h o v e r   { 
         b o x - s h a d o w :   0   4 p x   1 6 p x   r g b a ( 0 , 0 , 0 , 0 . 1 2 ) ; 
         b o r d e r - c o l o r :   # d 1 d 5 d b ; 
 } 
 
 . d o c t o r - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         p a d d i n g - b o t t o m :   1 6 p x ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 1 f 3 f 4 ; 
 } 
 
 . d o c t o r - h e a d e r   h 4   { 
         m a r g i n :   0 ; 
         c o l o r :   # 1 a 1 a 1 a ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         l i n e - h e i g h t :   1 . 3 ; 
 } 
 
 . s p e c i a l i t y   { 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         p a d d i n g :   6 p x   1 2 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   1 1 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . d o c t o r - s t a t s   { 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . s t a t - r o w   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p a d d i n g :   1 0 p x   0 ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 8 f 9 f a ; 
 } 
 
 . s t a t - r o w : l a s t - c h i l d   { 
         b o r d e r - b o t t o m :   n o n e ; 
 } 
 
 . s t a t - l a b e l   { 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - s i z e :   1 3 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 3 p x ; 
 } 
 
 . s t a t - v a l u e   { 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . s t a t - v a l u e . s u c c e s s   { 
         c o l o r :   # 0 5 9 6 6 9 ; 
 } 
 
 . s t a t - v a l u e . e r r o r   { 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . d o c t o r - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         p a d d i n g - t o p :   1 6 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # f 1 f 3 f 4 ; 
 } 
 
 . d o c t o r - a c t i o n s   . b t n   { 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         p a d d i n g :   8 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . d o c t o r - a c t i o n s   . b t n : h o v e r   { 
         b a c k g r o u n d :   # e 5 e 7 e b ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         b o r d e r - c o l o r :   # d 1 d 5 d b ; 
 } 
 
 / *   S e c i u n e a   c o m p a r a i i l o r   * / 
 . d o c t o r s - c o m p a r i s o n - s e c t i o n   { 
         m a r g i n - t o p :   4 0 p x ; 
 } 
 
 . d o c t o r s - c o m p a r i s o n - s e c t i o n   h 3   { 
         c o l o r :   # 1 a 1 a 1 a ; 
         m a r g i n - b o t t o m :   2 4 p x ; 
         f o n t - s i z e :   2 0 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . c o m p a r i s o n - c a r d s   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 8 0 p x ,   1 f r ) ) ; 
         g a p :   1 6 p x ; 
 } 
 
 . c o m p a r i s o n - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         p a d d i n g :   2 0 p x ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 1 e 5 e 9 ; 
 } 
 
 . c o m p a r i s o n - c a r d   h 4   { 
         c o l o r :   # 1 a 1 a 1 a ; 
         m a r g i n - b o t t o m :   1 6 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . t o p - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   8 p x ; 
 } 
 
 . t o p - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 2 p x ; 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b o r d e r :   1 p x   s o l i d   # f 1 f 3 f 4 ; 
 } 
 
 . r a n k   { 
         b a c k g r o u n d :   # 3 7 4 1 5 1 ; 
         c o l o r :   w h i t e ; 
         w i d t h :   2 0 p x ; 
         h e i g h t :   2 0 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f o n t - s i z e :   1 1 p x ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . n a m e   { 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f l e x :   1 ; 
         f o n t - s i z e :   1 3 p x ; 
 } 
 
 . v a l u e   { 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . h i g h l i g h t - i t e m   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p a d d i n g :   1 6 p x ; 
         b a c k g r o u n d :   # f 0 f 9 f f ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b o r d e r - l e f t :   3 p x   s o l i d   # 0 e a 5 e 9 ; 
 } 
 
 . h i g h l i g h t - i t e m   . n a m e   { 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 1 e 4 0 a f ; 
         f o n t - s i z e :   1 3 p x ; 
 } 
 
 . h i g h l i g h t - i t e m   . v a l u e   { 
         c o l o r :   # 0 e a 5 e 9 ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f o n t - s i z e :   1 2 p x ; 
 } 
 
 / *   R e s p o n s i v e   p e n t r u   r a p o a r t e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . r e p o r t s - f i l t e r s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 a l i g n - i t e m s :   s t r e t c h ; 
         } 
         
         . f i l t e r - g r o u p   { 
                 w i d t h :   1 0 0 % ; 
         } 
         
         . f i l t e r - g r o u p   s e l e c t   { 
                 m i n - w i d t h :   a u t o ; 
                 w i d t h :   1 0 0 % ; 
         } 
         
         . d o c t o r s - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
         
         . c o m p a r i s o n - c a r d s   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
 }  
 
 
 / *   = = = = =   R A P O A R T E   P E R   M E D I C   -   D E S I G N   P R O F E S I O N A L   = = = = =   * / 
 
 / *   F i l t r e   p e n t r u   r a p o a r t e   * / 
 . r e p o r t s - f i l t e r s   { 
         d i s p l a y :   f l e x ; 
         g a p :   2 4 p x ; 
         a l i g n - i t e m s :   e n d ; 
         m a r g i n - b o t t o m :   3 2 p x ; 
         p a d d i n g :   2 4 p x ; 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         b o x - s h a d o w :   0   1 p x   3 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . f i l t e r - g r o u p   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   8 p x ; 
         m i n - w i d t h :   1 6 0 p x ; 
 } 
 
 . f i l t e r - g r o u p   l a b e l   { 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         f o n t - s i z e :   1 3 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . f i l t e r - g r o u p   s e l e c t   { 
         p a d d i n g :   1 0 p x   1 2 p x ; 
         b o r d e r :   1 p x   s o l i d   # d 1 d 5 d b ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b a c k g r o u n d :   w h i t e ; 
         f o n t - s i z e :   1 4 p x ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . f i l t e r - g r o u p   s e l e c t : f o c u s   { 
         o u t l i n e :   n o n e ; 
         b o r d e r - c o l o r :   # 3 b 8 2 f 6 ; 
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 5 9 ,   1 3 0 ,   2 4 6 ,   0 . 1 ) ; 
 } 
 
 . f i l t e r - g r o u p   . b t n   { 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         b o r d e r :   1 p x   s o l i d   # d 1 d 5 d b ; 
         p a d d i n g :   1 0 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . f i l t e r - g r o u p   . b t n : h o v e r   { 
         b a c k g r o u n d :   # e 5 e 7 e b ; 
         b o r d e r - c o l o r :   # 9 c a 3 a f ; 
 } 
 
 / *   S e c i u n e a   r a p o a r t e l o r   p e r   m e d i c   * / 
 . d o c t o r s - r e p o r t s - s e c t i o n   { 
         m a r g i n - t o p :   4 0 p x ; 
 } 
 
 . d o c t o r s - r e p o r t s - s e c t i o n   h 3   { 
         c o l o r :   # 1 a 1 a 1 a ; 
         m a r g i n - b o t t o m :   2 4 p x ; 
         f o n t - s i z e :   1 8 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
         b o r d e r - b o t t o m :   2 p x   s o l i d   # f 1 f 3 f 4 ; 
         p a d d i n g - b o t t o m :   8 p x ; 
 } 
 
 . d o c t o r s - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 3 2 0 p x ,   1 f r ) ) ; 
         g a p :   1 6 p x ; 
         m a r g i n - b o t t o m :   4 0 p x ; 
 } 
 
 / *   C a r d - u r i   p e n t r u   m e d i c i   * / 
 . d o c t o r - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         p a d d i n g :   2 4 p x ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 1 e 5 e 9 ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . d o c t o r - c a r d : h o v e r   { 
         b o x - s h a d o w :   0   4 p x   1 6 p x   r g b a ( 0 , 0 , 0 , 0 . 1 2 ) ; 
         b o r d e r - c o l o r :   # d 1 d 5 d b ; 
 } 
 
 . d o c t o r - h e a d e r   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
         p a d d i n g - b o t t o m :   1 6 p x ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 1 f 3 f 4 ; 
 } 
 
 . d o c t o r - h e a d e r   h 4   { 
         m a r g i n :   0 ; 
         c o l o r :   # 1 a 1 a 1 a ; 
         f o n t - s i z e :   1 6 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         l i n e - h e i g h t :   1 . 3 ; 
 } 
 
 . s p e c i a l i t y   { 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         p a d d i n g :   6 p x   1 2 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   1 1 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . d o c t o r - s t a t s   { 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . s t a t - r o w   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p a d d i n g :   1 0 p x   0 ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   # f 8 f 9 f a ; 
 } 
 
 . s t a t - r o w : l a s t - c h i l d   { 
         b o r d e r - b o t t o m :   n o n e ; 
 } 
 
 . s t a t - l a b e l   { 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - s i z e :   1 3 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 3 p x ; 
 } 
 
 . s t a t - v a l u e   { 
         f o n t - w e i g h t :   6 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f o n t - s i z e :   1 4 p x ; 
 } 
 
 . s t a t - v a l u e . s u c c e s s   { 
         c o l o r :   # 0 5 9 6 6 9 ; 
 } 
 
 . s t a t - v a l u e . e r r o r   { 
         c o l o r :   # d c 2 6 2 6 ; 
 } 
 
 . d o c t o r - a c t i o n s   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         p a d d i n g - t o p :   1 6 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # f 1 f 3 f 4 ; 
 } 
 
 . d o c t o r - a c t i o n s   . b t n   { 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         c o l o r :   # 3 7 4 1 5 1 ; 
         b o r d e r :   1 p x   s o l i d   # e 5 e 7 e b ; 
         p a d d i n g :   8 p x   1 6 p x ; 
         b o r d e r - r a d i u s :   6 p x ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
         t e x t - d e c o r a t i o n :   n o n e ; 
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . d o c t o r - a c t i o n s   . b t n : h o v e r   { 
         b a c k g r o u n d :   # e 5 e 7 e b ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         b o r d e r - c o l o r :   # d 1 d 5 d b ; 
 } 
 
 / *   S e c i u n e a   c o m p a r a i i l o r   * / 
 . d o c t o r s - c o m p a r i s o n - s e c t i o n   { 
         m a r g i n - t o p :   4 0 p x ; 
 } 
 
 . d o c t o r s - c o m p a r i s o n - s e c t i o n   h 3   { 
         c o l o r :   # 1 a 1 a 1 a ; 
         m a r g i n - b o t t o m :   2 4 p x ; 
         f o n t - s i z e :   2 0 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . c o m p a r i s o n - c a r d s   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 8 0 p x ,   1 f r ) ) ; 
         g a p :   1 6 p x ; 
 } 
 
 . c o m p a r i s o n - c a r d   { 
         b a c k g r o u n d :   w h i t e ; 
         b o r d e r - r a d i u s :   8 p x ; 
         p a d d i n g :   2 0 p x ; 
         b o x - s h a d o w :   0   2 p x   8 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
         b o r d e r :   1 p x   s o l i d   # e 1 e 5 e 9 ; 
 } 
 
 . c o m p a r i s o n - c a r d   h 4   { 
         c o l o r :   # 1 a 1 a 1 a ; 
         m a r g i n - b o t t o m :   1 6 p x ; 
         f o n t - s i z e :   1 4 p x ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 . t o p - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   8 p x ; 
 } 
 
 . t o p - i t e m   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   1 2 p x ; 
         p a d d i n g :   1 2 p x ; 
         b a c k g r o u n d :   # f 8 f 9 f a ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b o r d e r :   1 p x   s o l i d   # f 1 f 3 f 4 ; 
 } 
 
 . r a n k   { 
         b a c k g r o u n d :   # 3 7 4 1 5 1 ; 
         c o l o r :   w h i t e ; 
         w i d t h :   2 0 p x ; 
         h e i g h t :   2 0 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f o n t - s i z e :   1 1 p x ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . n a m e   { 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 1 f 2 9 3 7 ; 
         f l e x :   1 ; 
         f o n t - s i z e :   1 3 p x ; 
 } 
 
 . v a l u e   { 
         c o l o r :   # 6 b 7 2 8 0 ; 
         f o n t - s i z e :   1 2 p x ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 . h i g h l i g h t - i t e m   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p a d d i n g :   1 6 p x ; 
         b a c k g r o u n d :   # f 0 f 9 f f ; 
         b o r d e r - r a d i u s :   6 p x ; 
         b o r d e r - l e f t :   3 p x   s o l i d   # 0 e a 5 e 9 ; 
 } 
 
 . h i g h l i g h t - i t e m   . n a m e   { 
         f o n t - w e i g h t :   5 0 0 ; 
         c o l o r :   # 1 e 4 0 a f ; 
         f o n t - s i z e :   1 3 p x ; 
 } 
 
 . h i g h l i g h t - i t e m   . v a l u e   { 
         c o l o r :   # 0 e a 5 e 9 ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f o n t - s i z e :   1 2 p x ; 
 } 
 
 / *   R e s p o n s i v e   p e n t r u   r a p o a r t e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . r e p o r t s - f i l t e r s   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 a l i g n - i t e m s :   s t r e t c h ; 
         } 
         
         . f i l t e r - g r o u p   { 
                 w i d t h :   1 0 0 % ; 
         } 
         
         . f i l t e r - g r o u p   s e l e c t   { 
                 m i n - w i d t h :   a u t o ; 
                 w i d t h :   1 0 0 % ; 
         } 
         
         . d o c t o r s - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
         
         . c o m p a r i s o n - c a r d s   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
 }  
 