/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-txll71u7rv] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-txll71u7rv] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }



.page[b-txll71u7rv] {
    height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
}

.sidebar[b-txll71u7rv] {
    width: 12rem;
    height: 100vh;
    background-color: var(--sidebar-bg);
    transition: all 0.3s;
    overflow-y: auto;
    position: sticky;
    top: 0;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

    .sidebar.collapsed[b-txll71u7rv] {
        width: 0;
        overflow: hidden;
    }

.sidebar-header[b-txll71u7rv] {
    padding: 0.75rem 1rem;
    background-color: rgba(229, 221, 221, 0.725);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .sidebar-header h3[b-txll71u7rv] {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: #fff;
    }

.main-content[b-txll71u7rv] {
    min-height: 100vh;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.toolbar-container[b-txll71u7rv] {
    position: sticky;
    top: 0;
    z-index: 10;
    overflow: visible !important;
}

.toolbar-container .e-toolbar[b-txll71u7rv] {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm);
}

.e-toolbar .e-toolbar-items[b-txll71u7rv] {
    background: transparent !important;
}

/* Hide mobile overlay on desktop */
.mobile-overlay[b-txll71u7rv] {
    display: none;
}

/* Toggle butonlar� i�in stiller */
.toggle-button[b-txll71u7rv],
.toolbar-toggle-button[b-txll71u7rv] {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .toggle-button:hover[b-txll71u7rv],
    .toolbar-toggle-button:hover[b-txll71u7rv] {
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }

    .toggle-button .e-icons[b-txll71u7rv],
    .toolbar-toggle-button .e-icons[b-txll71u7rv] {
        font-size: 1.25rem;
        line-height: 1;
    }

.toolbar-toggle-button[b-txll71u7rv] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background 0.2s;
    cursor: pointer;
}

.toolbar-toggle-button:hover[b-txll71u7rv] {
    background-color: var(--bg-body);
    color: var(--primary-color);
}

/* Mobil g�r�n�m i�in stiller */
@media (max-width: 768px) {
    .mobile-overlay[b-txll71u7rv] {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .page[b-txll71u7rv] {
        flex-direction: column;
    }

    .sidebar[b-txll71u7rv] {
        position: fixed;
        z-index: 1001;
        left: -12rem; /* Ba�lang��ta gizli */
        top: 56px; /* Toolbar y�ksekli�i */
        height: calc(100vh - 56px); /* Toolbar y�ksekli�ini ��kar */
        width: 12rem;
        transition: left 0.3s ease;
    }

        .sidebar.expanded[b-txll71u7rv] {
            left: 0;
        }

        /* Override the desktop collapsed style on mobile */
        .sidebar.collapsed[b-txll71u7rv] {
            width: 12rem; /* Keep full width on mobile, just hide with left position */
            left: -12rem;
            overflow: visible;
        }

    .main-content[b-txll71u7rv] {
        margin-left: 0;
        width: 100%;
    }

    .toolbar-container[b-txll71u7rv] {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 10;
        overflow: visible;
    }

    main[b-txll71u7rv] {
        margin-top: 56px; /* Toolbar y�ksekli�i kadar bo�luk */
        padding: 1rem;
    }
}

/* Ek stil d�zeltmeleri */
.e-toolbar[b-txll71u7rv] {
    border: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: visible !important;
}

.e-toolbar .e-toolbar-items[b-txll71u7rv] {
    overflow: visible !important;
}

.e-toolbar .e-toolbar-item[b-txll71u7rv] {
    overflow: visible !important;
    position: relative !important;
}

.e-toolbar .e-toolbar-item .template-wrapper[b-txll71u7rv] {
    overflow: visible !important;
}

.e-user-name[b-txll71u7rv] {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}


main[b-txll71u7rv] {
    padding: 1rem;
    flex: 1;
}




/* /Components/Layout/SidebarMenu.razor.rz.scp.css */
/* CSS Variables for Sidebar */
:root[b-3q9ktjsmy6] {
    --sidebar-bg: #1E293B;
    --sidebar-hover: #334155;
    --sidebar-active: #4F46E5;
}

/* Syncfusion icon font ayarları */
.e-icons[b-3q9ktjsmy6] {
    font-size: 0.75rem;
    line-height: 1;
    vertical-align: middle;
    margin-right: 0.4rem;
}

.nav-item[b-3q9ktjsmy6] {
    font-size: 0.75rem; /* Küçültülmüş font boyutu */
    padding-bottom: 0.3rem;
}

    .nav-item:first-of-type[b-3q9ktjsmy6] {
        padding-top: 0.75rem;
    }

    .nav-item:last-of-type[b-3q9ktjsmy6] {
        padding-bottom: 0.75rem;
    }

.nav-scrollable[b-3q9ktjsmy6] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-3q9ktjsmy6] {
    display: block;
}

/* Hover vurgusu */
/* Blazor CSS isolation ile NavLink çıktısı: div.nav-item > a.nav-link */
/* NavLink (alt bileşen) içindeki <a> için deep seçici kullan */
.nav-item[b-3q9ktjsmy6]  .nav-link {
    display: block;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    transition: background-color .15s ease, color .15s ease;
    color: #94A3B8; /* Slate 400 */
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-item[b-3q9ktjsmy6]  .nav-link:hover,
.nav-item[b-3q9ktjsmy6]  .nav-link:focus {
    background-color: var(--sidebar-hover) !important;
    color: #F8FAFC !important;
    transform: translateX(4px);
}

.nav-item[b-3q9ktjsmy6]  .nav-link.active,
.nav-item[b-3q9ktjsmy6]  .nav-link.active:hover {
    background-color: var(--sidebar-active) !important;
    color: white !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

@media (min-width: 641px) {
    .navbar-toggler[b-3q9ktjsmy6] {
        display: none;
    }

    .nav-scrollable[b-3q9ktjsmy6] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Account/Profile.razor.rz.scp.css */
/* Profile Page Styles */
.profile-page[b-teq6if3wa4] {
    max-width: 1400px;
}

.profile-kase-image[b-teq6if3wa4],
.profile-kase-placeholder[b-teq6if3wa4] {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-kase-placeholder[b-teq6if3wa4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.profile-upload-btn[b-teq6if3wa4] {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

.profile-stats[b-teq6if3wa4] {
    margin: 1rem 0;
}

/* Activity List */
.activity-list[b-teq6if3wa4] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item[b-teq6if3wa4] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.activity-item:hover[b-teq6if3wa4] {
    background: rgba(0, 0, 0, 0.02);
}

.activity-icon[b-teq6if3wa4] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.activity-content[b-teq6if3wa4] {
    flex: 1;
}

/* Modal Overlay */
.modal-overlay[b-teq6if3wa4] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-teq6if3wa4 0.2s ease;
}

@keyframes fadeIn-b-teq6if3wa4 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-dialog-custom[b-teq6if3wa4] {
    max-width: 500px;
    width: 90%;
    animation: slideUp-b-teq6if3wa4 0.3s ease;
}

@keyframes slideUp-b-teq6if3wa4 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content-custom[b-teq6if3wa4] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Upload Area */
.upload-area[b-teq6if3wa4] {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover[b-teq6if3wa4] {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.02);
}

.upload-label[b-teq6if3wa4] {
    cursor: pointer;
    display: block;
    margin: 0;
}

.selected-file-info[b-teq6if3wa4] {
    margin-bottom: 1rem;
    border-radius: 8px;
}

/* Form Enhancements */
.form-control:focus[b-teq6if3wa4],
.form-select:focus[b-teq6if3wa4] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.1);
}

.input-group-text[b-teq6if3wa4] {
    background: #f8fafc;
    border-right: none;
}

.input-group .form-control[b-teq6if3wa4] {
    border-left: none;
}

.input-group:focus-within .input-group-text[b-teq6if3wa4] {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.input-group:focus-within .form-control[b-teq6if3wa4] {
    border-color: #3b82f6;
}

/* Password Strength Indicator (Optional) */
.password-strength[b-teq6if3wa4] {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.password-strength-bar[b-teq6if3wa4] {
    height: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength-weak[b-teq6if3wa4] {
    width: 33%;
    background: #ef4444;
}

.password-strength-medium[b-teq6if3wa4] {
    width: 66%;
    background: #f59e0b;
}

.password-strength-strong[b-teq6if3wa4] {
    width: 100%;
    background: #10b981;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .profile-kase-image[b-teq6if3wa4],
    .profile-kase-placeholder[b-teq6if3wa4] {
        width: 150px;
        height: 150px;
    }

    .profile-upload-btn[b-teq6if3wa4] {
        width: 40px;
        height: 40px;
    }

    .profile-stats[b-teq6if3wa4] {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-stats>div[b-teq6if3wa4] {
        border: none !important;
        padding: 0 !important;
    }
}
/* /Components/Pages/Okuma/DlgAkcOnay.razor.rz.scp.css */
.akc-dialog-modern[b-kkrj6wewp4] {
  --primary-color: #3b82f6;
  --danger-color: #ef4444;
  --success-color: #10b981;
  --border-radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.akc-dialog-modern .e-dialog[b-kkrj6wewp4] {
  border-radius: var(--border-radius);
}

/* Header removed for more space */

.akc-container-modern[b-kkrj6wewp4] {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
}

.akc-toolbar-section[b-kkrj6wewp4] {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  border: 1px solid #e5e7eb;
  flex: 0 0 auto;
}

.toolbar-content[b-kkrj6wewp4] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Modern Patient Info Card */
.patient-card[b-kkrj6wewp4] {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  min-width: 400px;
}

.patient-info-modern[b-kkrj6wewp4] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.patient-icon[b-kkrj6wewp4] {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(59, 130, 246, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.info-value-main[b-kkrj6wewp4] {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.01em;
}

.patient-meta[b-kkrj6wewp4] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.meta-item[b-kkrj6wewp4] {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
}

.meta-item .e-icons[b-kkrj6wewp4] {
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-separator[b-kkrj6wewp4] {
  color: #cbd5e1;
  font-weight: 300;
}

.action-buttons-group[b-kkrj6wewp4] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.modern-btn[b-kkrj6wewp4] {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.4rem 1rem !important;
  font-size: 0.9rem;
}

.modern-btn:hover[b-kkrj6wewp4] {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.akc-main-content[b-kkrj6wewp4] {
  display: flex;
  gap: 1rem;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.akc-image-section[b-kkrj6wewp4] {
  flex: 0 0 45%;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 0.1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.akc-image-container[b-kkrj6wewp4] {
  position: relative;
  width: 100%;
  flex: 1;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  overflow: hidden;
}

/* Panzoom wrapper - DlgEkgOnay.razor.css ile aynı ayarlar */
#akc-image-wrapper[b-kkrj6wewp4] {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-container[b-kkrj6wewp4] {
  display: none;
}

/* Panzoom görüntü - Başlangıçta auto boyut */
.akc-image[b-kkrj6wewp4] {
  width: auto;
  height: auto;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  cursor: grab;
  transition: transform 0.1s ease;
  display: block;
  position: relative;
  touch-action: none;
}

.akc-image:active[b-kkrj6wewp4] {
  cursor: grabbing;
}

/* Loading.gif özel stil */
.akc-image[src*="loading.gif"][b-kkrj6wewp4] {
  width: 50px !important;
  height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  object-fit: contain !important;
}

.akc-zoom-controls[b-kkrj6wewp4] {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.akc-zoom-btn[b-kkrj6wewp4] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  background: #007bff;
  color: white;
  border: none;
  transition: all 0.2s ease;
}

.akc-zoom-btn:hover[b-kkrj6wewp4] {
  background: #0056b3;
  transform: scale(1.1);
}

.akc-zoom-btn:active[b-kkrj6wewp4] {
  transform: scale(0.95);
}

.akc-zoom-level[b-kkrj6wewp4] {
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-weight: 600;
  min-width: 60px;
  justify-content: center;
}

.akc-content-section[b-kkrj6wewp4] {
  flex: 0 0 55%;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.akc-content-section .e-tab[b-kkrj6wewp4] {
  height: 100%;
}

.akc-content-section .e-tab-header[b-kkrj6wewp4] {
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
  padding: 0 1rem;
}

.akc-content-section .e-tab-header .e-tab-text[b-kkrj6wewp4] {
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: #6b7280;
  font-size: 0.95rem;
}

.akc-content-section .e-tab-header .e-tab-item.e-active .e-tab-text[b-kkrj6wewp4] {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: -2px;
}

.tab-content-wrapper[b-kkrj6wewp4] {
  padding: 1.5rem;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group-modern[b-kkrj6wewp4] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label[b-kkrj6wewp4] {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.95rem;
}

.modern-dropdown[b-kkrj6wewp4],
.modern-textbox[b-kkrj6wewp4] {
  border: 1px solid #d1d5db !important;
  border-radius: 6px !important;
  padding: 0.6rem 0.75rem !important;
  font-size: 0.95rem !important;
  transition: all 0.2s ease;
}

.modern-dropdown:focus[b-kkrj6wewp4],
.modern-textbox:focus[b-kkrj6wewp4] {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

.rich-editor-wrapper[b-kkrj6wewp4] {
  flex: 1;
  min-height: 200px;
}

.rich-editor-wrapper .e-rte-container[b-kkrj6wewp4] {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
}

.form-actions[b-kkrj6wewp4] {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  flex: 0 0 auto;
}

.modern-action-btn[b-kkrj6wewp4] {
  padding: 0.7rem 1.5rem !important;
  font-weight: 500;
  border-radius: 6px !important;
  transition: all 0.2s ease;
}

.modern-action-btn:hover[b-kkrj6wewp4] {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.placeholder-content[b-kkrj6wewp4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 1rem;
  color: #9ca3af;
}

.placeholder-icon[b-kkrj6wewp4] {
  font-size: 3rem;
  opacity: 0.5;
}

.placeholder-text[b-kkrj6wewp4] {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.placeholder-hint[b-kkrj6wewp4] {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .akc-main-content[b-kkrj6wewp4] {
    flex-direction: column;
  }

  .akc-image-section[b-kkrj6wewp4] {
    flex: 0 0 auto;
    max-height: 40%;
    padding: 0.1rem
  }

  .akc-content-section[b-kkrj6wewp4] {
    flex: 0 0 auto;
    min-height: 50%;
  }
}

@media (max-width: 768px) {
  .akc-container-modern[b-kkrj6wewp4] {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .action-buttons-group[b-kkrj6wewp4] {
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .modern-btn[b-kkrj6wewp4] {
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem !important;
  }

  .tab-content-wrapper[b-kkrj6wewp4] {
    padding: 1rem;
  }
}

/* Pnömokonyoz tab compact styles */
.pnömokonyoz-compact[b-kkrj6wewp4] {
  padding: 0.5rem !important;
}

.pnömokonyoz-compact .section-container[b-kkrj6wewp4] {
  margin-bottom: 10px !important;
}

.pnömokonyoz-compact .section-header[b-kkrj6wewp4] {
  padding: 8px 10px !important;
}

.pnömokonyoz-compact .section-header h5[b-kkrj6wewp4],
.pnömokonyoz-compact .section-header h6[b-kkrj6wewp4] {
  font-size: 0.9rem !important;
  margin: 0 !important;
}

.pnömokonyoz-compact .row[b-kkrj6wewp4] {
  margin-bottom: 5px !important;
}

.pnömokonyoz-compact .col-md-1[b-kkrj6wewp4],
.pnömokonyoz-compact .col-md-2[b-kkrj6wewp4],
.pnömokonyoz-compact .col-md-3[b-kkrj6wewp4],
.pnömokonyoz-compact .col-md-4[b-kkrj6wewp4],
.pnömokonyoz-compact .col-md-5[b-kkrj6wewp4],
.pnömokonyoz-compact .col-md-6[b-kkrj6wewp4] {
  padding: 2px !important;
}

/* Compact checkbox styles for Pnömokonyoz */
.pnömokonyoz-compact .e-checkbox-wrapper[b-kkrj6wewp4] {
  margin-bottom: 2px !important;
  font-size: 0.85rem !important;
  line-height: 1.2 !important;
}

.pnömokonyoz-compact .e-checkbox-wrapper .e-label[b-kkrj6wewp4] {
  font-size: 0.85rem !important;
  line-height: 1.2 !important;
}

.pnömokonyoz-compact .e-checkbox[b-kkrj6wewp4] {
  transform: scale(0.9);
  margin-right: 3px !important;
}

/* Compact radio button styles */
.pnömokonyoz-compact .e-radio-wrapper[b-kkrj6wewp4] {
  margin-bottom: 2px !important;
  font-size: 0.85rem !important;
  line-height: 1.2 !important;
}

.pnömokonyoz-compact .e-radio-wrapper .e-label[b-kkrj6wewp4] {
  font-size: 0.85rem !important;
  line-height: 1.2 !important;
}

.pnömokonyoz-compact .e-radio[b-kkrj6wewp4] {
  transform: scale(0.9);
  margin-right: 3px !important;
}

/* Compact text styles */
.pnömokonyoz-compact .form-label[b-kkrj6wewp4] {
  font-size: 0.85rem !important;
  margin-bottom: 3px !important;
}

.pnömokonyoz-compact strong[b-kkrj6wewp4] {
  font-size: 0.85rem !important;
}

.pnömokonyoz-compact .e-multiline-input[b-kkrj6wewp4] {
  font-size: 0.85rem !important;
}

/* Reduce spacing in specific sections */
.pnömokonyoz-compact .col-1[b-kkrj6wewp4],
.pnömokonyoz-compact .col-2[b-kkrj6wewp4],
.pnömokonyoz-compact .col-3[b-kkrj6wewp4],
.pnömokonyoz-compact .col-4[b-kkrj6wewp4],
.pnömokonyoz-compact .col-5[b-kkrj6wewp4],
.pnömokonyoz-compact .col-6[b-kkrj6wewp4] {
  padding: 1px !important;
}

/* Custom column widths for better space utilization */
.col-md-2-5[b-kkrj6wewp4] {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 2px !important;
}

.col-md-3-5[b-kkrj6wewp4] {
  flex: 0 0 29.16666667%;
  max-width: 29.16666667%;
  padding: 2px !important;
}

/* Compact dropdown and textbox styles */
.pnömokonyoz-compact .e-dropdownbase[b-kkrj6wewp4],
.pnömokonyoz-compact .e-input-group[b-kkrj6wewp4] {
  font-size: 0.85rem !important;
}

.pnömokonyoz-compact .e-input-group .e-input[b-kkrj6wewp4] {
  padding: 4px 6px !important;
  font-size: 0.85rem !important;
}

/* Section container styles moved from inline */
.section-container[b-kkrj6wewp4] {
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-header[b-kkrj6wewp4] {
  padding: 12px 15px;
  border-radius: 8px 8px 0 0;
  color: white;
  font-weight: 600;
}

.section-header h5[b-kkrj6wewp4],
.section-header h4[b-kkrj6wewp4],
.section-header h6[b-kkrj6wewp4] {
  margin: 0;
  font-weight: 600;
}

/* Technical Quality Section - Blue */
.section-container:nth-of-type(1)[b-kkrj6wewp4] {
  background: linear-gradient(135deg, #d9edf7 0%, #cce5ff 100%);
  border-left: 4px solid #0066cc;
}

.section-container:nth-of-type(1) .section-header[b-kkrj6wewp4] {
  background-color: #0066cc;
}

/* Parenchymal Abnormalities Section - Green */
.section-container:nth-of-type(2)[b-kkrj6wewp4] {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 4px solid #28a745;
}

.section-container:nth-of-type(2) .section-header[b-kkrj6wewp4] {
  background-color: #28a745;
}

/* Pleural Abnormalities Section - Orange */
.section-container:nth-of-type(3)[b-kkrj6wewp4] {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #ff9800;
  border-right: 2px solid #ff9800;
}

.section-container:nth-of-type(3) .section-header[b-kkrj6wewp4] {
  background-color: #ff9800;
}

/* Other Abnormalities Section - Purple */
.section-container:nth-of-type(4)[b-kkrj6wewp4] {
  background: linear-gradient(135deg, #e7d4f8 0%, #f8d7da 100%);
  border-left: 4px solid #9c27b0;
}

.section-container:nth-of-type(4) .section-header[b-kkrj6wewp4] {
  background-color: #9c27b0;
}

/* Radiograph Reading History Section - Gray */
.section-container:nth-of-type(5)[b-kkrj6wewp4] {
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  border-left: 4px solid #616161;
}

.section-container:nth-of-type(5) .section-header[b-kkrj6wewp4] {
  background-color: #616161;
}

/* Sub-section backgrounds */
.section-container .row[style*="background-color: #e8f5e9"][b-kkrj6wewp4] {
  background-color: #e8f5e9 !important;
  border-radius: 6px;
  padding: 15px;
}

.section-container .row[style*="background-color: #f1f8f4"][b-kkrj6wewp4] {
  background-color: #f1f8f4 !important;
  padding: 20px;
  border-radius: 6px;
}

.section-container .row[style*="background-color: #fff8e1"][b-kkrj6wewp4] {
  background-color: #fff8e1 !important;
  border-radius: 6px;
  padding: 15px;
}

.section-container .row[style*="background-color: #f3e5f5"][b-kkrj6wewp4] {
  background-color: #f3e5f5 !important;
  border-radius: 6px;
  padding: 15px;
}

/* Specific column backgrounds */
.section-container .col-md-3[style*="background-color: #e8f5e9"][b-kkrj6wewp4] {
  background-color: #e8f5e9 !important;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #a5d6a7;
}

.section-container .col-md-3[style*="background-color: #c8e6c9"][b-kkrj6wewp4] {
  background-color: #c8e6c9 !important;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #81c784;
}

.section-container .col-md-3[style*="background-color: #a5d6a7"][b-kkrj6wewp4] {
  background-color: #a5d6a7 !important;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #66bb6a;
}

.section-container .col-md-3[style*="background-color: #ffe0b2"][b-kkrj6wewp4] {
  background-color: #ffe0b2 !important;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.section-container .col-md-3[style*="background-color: #ffcc80"][b-kkrj6wewp4] {
  background-color: #ffcc80 !important;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.section-container .col-md-3[style*="background-color: #ffb74d"][b-kkrj6wewp4] {
  background-color: #ffb74d !important;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.section-container .col-md-3[style*="background-color: #ffa726"][b-kkrj6wewp4] {
  background-color: #ffa726 !important;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

/* Info boxes */
.section-container div[style*="background-color: #c8e6c9"][b-kkrj6wewp4] {
  background-color: #c8e6c9 !important;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
}

.section-container div[style*="background-color: #e1bee7"][b-kkrj6wewp4] {
  background-color: #e1bee7 !important;
  border-radius: 4px;
  padding: 10px;
}

.section-container div[style*="background-color: rgb(242, 134, 77)"][b-kkrj6wewp4] {
  background-color: rgb(242, 134, 77) !important;
  color: white;
  border-radius: 6px;
  padding: 3px 5px;
}

.section-container div[style*="background-color: rgb(233, 114, 50)"][b-kkrj6wewp4] {
  background-color: rgb(233, 114, 50) !important;
  color: white;
  border-radius: 6px;
  padding: 6px 10px;
}

/* Responsive improvements for navigation buttons */
@media (max-width: 768px) {
  .action-buttons-group[b-kkrj6wewp4] {
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
  
  .modern-btn[b-kkrj6wewp4] {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem !important;
  }
}

/* Disabled state for ILO approved forms */
.ilo-approved .section-container .e-checkbox-wrapper[b-kkrj6wewp4],
.ilo-approved .section-container .e-radio-wrapper[b-kkrj6wewp4],
.ilo-approved .section-container .e-multiline-input[b-kkrj6wewp4],
.ilo-approved .section-container .e-input-group[b-kkrj6wewp4],
.ilo-approved .section-container .e-dropdownbase[b-kkrj6wewp4] {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.ilo-approved .section-container .e-checkbox[b-kkrj6wewp4],
.ilo-approved .section-container .e-radio[b-kkrj6wewp4] {
  opacity: 0.5;
}

.ilo-approved .section-container .e-label[b-kkrj6wewp4] {
  color: #666;
}

/* Ensure buttons in action-buttons-group remain clickable */
.ilo-approved .action-buttons-group .e-btn[b-kkrj6wewp4] {
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
/* /Components/Pages/Okuma/DlgEkgOnay.razor.rz.scp.css */
.ekg-dialog-content[b-khom482gpk] {
    max-height: 90vh;
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
}

.ekg-header[b-khom482gpk] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.ekg-controls[b-khom482gpk] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}

.ekg-button-group[b-khom482gpk] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ekg-template-section[b-khom482gpk] {
    flex: 1;
    min-width: 300px;
}

.ekg-input-section[b-khom482gpk] {
    flex: 2;
    min-width: 400px;
}

.ekg-input-group[b-khom482gpk] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ekg-input-label[b-khom482gpk] {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
}

.ekg-input-field[b-khom482gpk] {
    flex: 1;
}

.ekg-image-container[b-khom482gpk] {
    position: relative;
    width: 100%;
    height: 60vh;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    overflow: hidden;
    margin-bottom: 20px;
}

.ekg-image-wrapper[b-khom482gpk] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ekg-image[b-khom482gpk] {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
    transform-origin: center center;
    position: relative;
}

/* Ensure loading.gif is properly displayed */
.ekg-image[src="/img/loading.gif"][b-khom482gpk] {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain !important;
}

.ekg-image:active[b-khom482gpk] {
    cursor: grabbing;
}

.ekg-zoom-controls[b-khom482gpk] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.ekg-zoom-btn[b-khom482gpk] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    background: #007bff;
    color: white;
    border: none;
    transition: all 0.2s ease;
}

.ekg-zoom-btn:hover[b-khom482gpk] {
    background: #0056b3;
    transform: scale(1.1);
}

.ekg-zoom-btn:active[b-khom482gpk] {
    transform: scale(0.95);
}

.ekg-zoom-level[b-khom482gpk] {
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-weight: 600;
    min-width: 60px;
    justify-content: center;
}

/* Template Selection with Search */
.ekg-template-selector[b-khom482gpk] {
    position: relative;
}

.ekg-template-search[b-khom482gpk] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}

.ekg-template-list[b-khom482gpk] {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
}

.ekg-template-item[b-khom482gpk] {
    padding: 10px;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ekg-template-item:hover[b-khom482gpk] {
    background-color: #f8f9fa;
}

.ekg-template-item.selected[b-khom482gpk] {
    background-color: #007bff;
    color: white;
}

.ekg-template-item:last-child[b-khom482gpk] {
    border-bottom: none;
}

.template-item-header[b-khom482gpk] {
    font-weight: 600;
    margin-bottom: 5px;
}

.template-item-content[b-khom482gpk] {
    font-size: 0.9em;
    color: #6c757d;
}

.ekg-template-item.selected .template-item-content[b-khom482gpk] {
    color: rgba(255, 255, 255, 0.9);
}

/* Action Buttons */
.ekg-action-buttons[b-khom482gpk] {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ekg-action-button[b-khom482gpk] {
    min-width: 120px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ekg-controls[b-khom482gpk] {
        flex-direction: column;
        gap: 10px;
    }
    
    .ekg-template-section[b-khom482gpk],
    .ekg-input-section[b-khom482gpk] {
        min-width: 100%;
    }
    
    .ekg-image-container[b-khom482gpk] {
        height: 50vh;
    }
    
    .ekg-zoom-controls[b-khom482gpk] {
        bottom: 10px;
        right: 10px;
        padding: 8px;
    }
    
    .ekg-zoom-btn[b-khom482gpk] {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .ekg-action-buttons[b-khom482gpk] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ekg-action-button[b-khom482gpk] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ekg-dialog-content[b-khom482gpk] {
        padding: 5px;
    }
    
    .ekg-image-container[b-khom482gpk] {
        height: 40vh;
    }
    
    .ekg-input-group[b-khom482gpk] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ekg-input-label[b-khom482gpk] {
        min-width: auto;
        margin-bottom: 5px;
    }
}

/* Image container styles from original */
.img-container[b-khom482gpk] {
    margin: 0;
    text-align: center;
}

img[b-khom482gpk] {
    max-width: 100%;
    height: auto;
}
/* /Components/Pages/Okuma/DlgGozOnay.razor.rz.scp.css */
.goz-dialog-content[b-n3oq23ej2e] {
    max-height: 85vh;
    overflow-y: auto;
    padding: 10px;
    box-sizing: border-box;
}

.goz-section[b-n3oq23ej2e] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #dee2e6;
}

.goz-header[b-n3oq23ej2e] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 15px -20px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.goz-header.sag-goz[b-n3oq23ej2e] {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.goz-header.sol-goz[b-n3oq23ej2e] {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    color: #212529;
}

.goz-input-grid[b-n3oq23ej2e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.goz-input-group[b-n3oq23ej2e] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.goz-input-label[b-n3oq23ej2e] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    text-align: center;
    padding: 5px;
    background: #e9ecef;
    border-radius: 4px;
}

.goz-input-field[b-n3oq23ej2e] {
    text-align: center;
    font-weight: 500;
}

.gorme-keskinligi-grid[b-n3oq23ej2e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.gorme-input-group[b-n3oq23ej2e] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.gorme-label[b-n3oq23ej2e] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    text-align: center;
}

.secim-section[b-n3oq23ej2e] {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.secim-baslik[b-n3oq23ej2e] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.secim-baslik.degerlendirme[b-n3oq23ej2e] { background: #d1ecf1; color: #0c5460; }
.secim-baslik.tani[b-n3oq23ej2e] { background: #fff3cd; color: #856404; }
.secim-baslik.sonuc[b-n3oq23ej2e] { background: #d1ecf1; color: #0c5460; }
.secim-baslik.renk-korlugu[b-n3oq23ej2e] { background: #fff3cd; color: #856404; }
.secim-baslik.gozluk-ihtiyaci[b-n3oq23ej2e] { background: #d1ecf1; color: #0c5460; }

.radio-button-group[b-n3oq23ej2e] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.radio-item[b-n3oq23ej2e] {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-item:hover[b-n3oq23ej2e] {
    background: #e9ecef;
    border-color: #adb5bd;
}

.radio-item.selected[b-n3oq23ej2e] {
    background: #007bff;
    color: white;
    border-color: #0056b3;
}

.action-buttons[b-n3oq23ej2e] {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.action-button[b-n3oq23ej2e] {
    min-width: 120px;
    font-weight: 500;
}

.textarea-container[b-n3oq23ej2e] {
    margin-top: 10px;
}

/* Container for eye sections to display them side by side */
.goz-sections-container[b-n3oq23ej2e] {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.goz-sections-container .goz-section[b-n3oq23ej2e] {
    flex: 1;
    margin-bottom: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .goz-dialog-content[b-n3oq23ej2e] {
        padding: 10px;
    }

    .goz-section[b-n3oq23ej2e] {
        padding: 15px;
        margin-bottom: 15px;
    }

    .goz-input-grid[b-n3oq23ej2e] {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gorme-keskinligi-grid[b-n3oq23ej2e] {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .radio-button-group[b-n3oq23ej2e] {
        flex-direction: column;
        gap: 8px;
    }

    .action-buttons[b-n3oq23ej2e] {
        flex-direction: column;
        align-items: stretch;
    }

    .action-button[b-n3oq23ej2e] {
        width: 100%;
    }

    /* Stack eye sections vertically on mobile */
    .goz-sections-container[b-n3oq23ej2e] {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .goz-input-grid[b-n3oq23ej2e] {
        grid-template-columns: 1fr;
    }

    .goz-header[b-n3oq23ej2e] {
        font-size: 1rem;
        padding: 10px 15px;
    }
}
/* /Components/Pages/Okuma/OkumaFiltre.razor.rz.scp.css */
.filter-container[b-tpf8aep67m] {
  padding: 1rem;
}

.filter-row[b-tpf8aep67m] {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.filter-label[b-tpf8aep67m] {
  font-size: 12px;
  margin-bottom: 2px;
}

.filter-col[b-tpf8aep67m] {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.button-col[b-tpf8aep67m] {
  align-items: flex-end;
}

.button-group[b-tpf8aep67m] {
  width: 100%;
  min-width: 200px;
}

.validation-row[b-tpf8aep67m] {
  margin-top: 1rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .filter-row[b-tpf8aep67m] {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .filter-col[b-tpf8aep67m] {
    min-width: 100%;
    margin-bottom: 0.5rem;
  }

  .button-group[b-tpf8aep67m] {
    flex-direction: column;
    gap: 0.5rem;
  }

    .button-group .e-btn[b-tpf8aep67m] {
      width: 100%;
    }
}

/* Small desktop and tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .filter-row[b-tpf8aep67m] {
    flex-wrap: wrap;
  }
  
  .filter-col[b-tpf8aep67m] {
    min-width: calc(50% - 0.5rem);
    flex: 0 0 calc(50% - 0.5rem);
  }
  
  .button-col[b-tpf8aep67m] {
    min-width: 100%;
    flex: 0 0 100%;
    margin-top: 0.5rem;
  }
}

/* Medium desktop adjustments */
@media (min-width: 1025px) and (max-width: 1299px) {
  .filter-row[b-tpf8aep67m] {
    flex-wrap: nowrap;
    gap: 0.8rem;
  }
  
  .filter-col[b-tpf8aep67m] {
    flex: 1;
    min-width: 0;
  }
}

/* Desktop adjustments - ensure single row layout */
@media (min-width: 1025px) {
  .filter-row[b-tpf8aep67m] {
    gap: 1rem;
    flex-wrap: nowrap; /* Prevent wrapping to ensure single row */
  }

  .filter-col[b-tpf8aep67m] {
    min-width: 0;
    flex: 1;
  }
}

/* Fix for 1000-1290px width range - ensure single row layout */
@media (min-width: 1000px) and (max-width: 1290px) {
  .filter-row[b-tpf8aep67m] {
    flex-wrap: nowrap; /* Prevent wrapping to ensure single row */
    gap: 0.8rem; /* Slightly reduce gap to fit more elements */
  }

  .filter-col[b-tpf8aep67m] {
    min-width: 0; /* Remove fixed width to allow flexible sizing */
    flex: 1; /* Equal distribution of space */
  }

  .button-col[b-tpf8aep67m] {
    min-width: 0; /* Remove fixed width */
    flex: 1; /* Equal distribution of space */
    margin-top: 0; /* Remove top margin */
  }
}

/* Large screens optimization - ensure all elements fit in one row */
@media (min-width: 1400px) {
  .filter-row[b-tpf8aep67m] {
    gap: 1.2rem;
  }
  
  .filter-col[b-tpf8aep67m] {
    flex: 1;
    max-width: 220px; /* Limit maximum width for better proportions */
  }
  
  .button-col[b-tpf8aep67m] {
    flex: 1.2; /* Slightly more space for buttons */
    max-width: 280px;
  }
}
