/* Main Content */
.main-content {
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 1px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Main Panel */
.main-panel {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    min-width: min(100%, var(--main-panel-min-width));
}

.topology-header {
    padding: 16px var(--spacing-xl) 16px;
    background: transparent;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: auto;
}

.topology-title {
    display: none;
}

.topology-title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.topology-breadcrumb {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.topology-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    margin-left: auto;
}

/* ===========================================
   SIREN + SENSITIVITY CONTROL GROUP
   =========================================== */
.siren-sensitivity-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    height: 40px;
}

/* Buttons inside the group - inherit parent styling */
.siren-sensitivity-group .icon-btn {
    margin: 0;
    border: none;
    box-shadow: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    background: transparent;
}

.siren-sensitivity-group .icon-btn:hover {
    background: var(--gray-100);
}

.siren-sensitivity-group .icon-btn img {
    width: 24px;
    height: 24px;
}

.siren-sensitivity-group .icon-btn.siren img {
    width: 28px;
    height: 28px;
}

/* Siren states inside group */
.siren-sensitivity-group .icon-btn.siren.calm,
.siren-sensitivity-group .icon-btn.siren[data-state="calm"] {
    background: rgba(22, 163, 74, 0.1);
}

.siren-sensitivity-group .icon-btn.siren.active,
.siren-sensitivity-group .icon-btn.siren[data-state="alert"] {
    background: rgba(255, 59, 48, 0.12);
}

/* Dark mode for group */
html[data-theme="dark"] .siren-sensitivity-group {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

html[data-theme="dark"] .siren-sensitivity-group .icon-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
}

html[data-theme="dark"] .siren-sensitivity-group .icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .siren-sensitivity-group .icon-btn.siren.calm,
html[data-theme="dark"] .siren-sensitivity-group .icon-btn.siren[data-state="calm"] {
    background: rgba(34, 197, 94, 0.15);
}

html[data-theme="dark"] .siren-sensitivity-group .icon-btn.siren.active,
html[data-theme="dark"] .siren-sensitivity-group .icon-btn.siren[data-state="alert"] {
    background: rgba(255, 59, 48, 0.2);
}

/* ===========================================
   TOPOLOGY ACTION BUTTONS
   =========================================== */
#toggle-expand-btn,
#refresh-btn {
    width: 40px;
    height: 40px;
}

#toggle-expand-btn img {
    width: var(--topology-action-icon-size);
    height: var(--topology-action-icon-size);
}

#refresh-btn img {
    width: var(--refresh-action-icon-size);
    height: var(--refresh-action-icon-size);
}

.sensitivity-bar {
    display: flex;
    gap: 0.35rem;
    padding: 0 0.25rem;
    border-left: 1px solid var(--gray-200);
    padding-left: 0.5rem;
}

.sensitivity-level {
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    outline: none;
}

.sensitivity-level:hover {
    background: var(--gray-100);
}

.sensitivity-indicator {
    width: var(--indicator-size, 8px);
    height: var(--indicator-size, 8px);
    display: block;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sensitivity-bar.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.sensitivity-bar.disabled .sensitivity-level {
    cursor: not-allowed;
}

.sensitivity-bar.disabled .sensitivity-indicator {
    box-shadow: none !important;
    filter: grayscale(0.35);
}

.sensitivity-level:nth-child(1) .sensitivity-indicator {
    --indicator-size: 6px;
}

.sensitivity-level:nth-child(2) .sensitivity-indicator {
    --indicator-size: 10px;
}

.sensitivity-level:nth-child(3) .sensitivity-indicator {
    --indicator-size: 14px;
}

.sensitivity-level.active .sensitivity-indicator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.5), 0 0 12px rgba(118, 75, 162, 0.45);
    animation: pulse-glow 0.6s ease-out;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.5), 0 0 12px rgba(118, 75, 162, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 3px 12px rgba(102, 126, 234, 0.65), 0 0 20px rgba(118, 75, 162, 0.5);
    }
}

.sensitivity-level.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.18) 0%, rgba(118, 75, 162, 0.14) 100%);
}

.sensitivity-level:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Dark mode sensitivity bar */
html[data-theme="dark"] .sensitivity-bar {
    border-left-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .sensitivity-level:hover {
    background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .sensitivity-indicator {
    background: rgba(255, 255, 255, 0.3);
}

html[data-theme="dark"] .sensitivity-level.active .sensitivity-indicator {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
}

.loading-progress {
    width: 100%;
    max-width: 240px;
    height: 4px;
    background: var(--gray-200);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin: var(--spacing-sm) auto;
}

.loading-progress-bar {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: translateX(-100%);
    animation: loading-indeterminate 1.4s ease-in-out infinite;
}

@keyframes loading-indeterminate {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ========================================
   HEADER SEARCH BAR (Always Visible)
   ======================================== */
.header-search-container {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 320px;
    margin-left: 12px;
}

.header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.header-search-icon {
    position: absolute;
    left: 12px;
    color: var(--gray-400);
    pointer-events: none;
    z-index: 1;
}

.header-search-input {
    width: 100%;
    padding: 8px 36px 8px 40px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--white);
    color: var(--gray-800);
    transition: all 0.15s ease;
    height: 40px;
}

.header-search-input::placeholder {
    color: var(--gray-400);
}

.header-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
}

.header-search-clear {
    position: absolute;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.15s ease;
    opacity: 0;
    pointer-events: none;
}

.header-search-clear.visible {
    opacity: 1;
    pointer-events: auto;
}

.header-search-clear:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* Search Suggestions */
.header-search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
    max-height: 300px;
    overflow-y: auto;
    z-index: 4000;
}

.header-search-suggestions.show {
    display: block;
}

/* ========================================
   FILTER DROPDOWN
   ======================================== */
.filter-dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.filter-dropdown-btn .filter-icon {
    flex-shrink: 0;
    width: var(--topology-action-icon-size);
    height: var(--topology-action-icon-size);
}

/* Dark mode: ensure filter button icons are white */
html[data-theme="dark"] .filter-dropdown-btn .filter-icon {
    color: rgba(255, 255, 255, 0.8);
}

html[data-theme="dark"] .filter-dropdown-btn:hover .filter-icon,
html[data-theme="dark"] .filter-dropdown-btn[aria-expanded="true"] .filter-icon {
    color: rgba(255, 255, 255, 0.95);
}

html[data-theme="dark"] .filter-dropdown-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .filter-dropdown-btn[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
}

.filter-dropdown-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--white);
}

.filter-dropdown-btn[aria-expanded="true"] {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
}

.filter-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 320px;
    max-width: 380px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    overflow: hidden;
}

.filter-dropdown-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Search Section */
.filter-search-section {
    padding: 12px;
    background: transparent;
    position: relative;
}

.filter-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-search-icon {
    position: absolute;
    left: 12px;
    color: var(--gray-400);
    pointer-events: none;
    z-index: 1;
}

.filter-search-input {
    width: 100%;
    padding: 10px 36px 10px 40px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--white);
    color: var(--gray-800);
    transition: all 0.15s ease;
}

.filter-search-input::placeholder {
    color: var(--gray-400);
}

.filter-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
}

.filter-search-clear {
    position: absolute;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-search-clear:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.filter-search-clear.hidden {
    display: none;
}

/* Search Suggestions */
.filter-search-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.filter-search-suggestions.hidden {
    display: none;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.1s ease;
    border-bottom: 1px solid var(--gray-100);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: var(--gray-50);
}

.search-suggestion-item.selected {
    background: rgba(102, 126, 234, 0.08);
}

.suggestion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    flex-shrink: 0;
}

.suggestion-icon svg {
    width: 14px;
    height: 14px;
}

.suggestion-icon--cto {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.suggestion-icon--client {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-path {
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-no-results {
    padding: 16px 12px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.search-loading {
    padding: 16px 12px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Dropdown Content */
.filter-dropdown-content {
    padding: 12px;
    max-height: 280px;
    overflow-y: auto;
}

.olt-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.olt-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s ease;
}

.olt-checkbox-item:hover {
    background: var(--gray-100);
}

.olt-checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
}

.olt-checkbox-item .olt-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.filter-section-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    padding: 8px 10px 0;
    border-top: 1px solid var(--gray-100);
}

.filter-link-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
    transition: all 0.15s ease;
}

.filter-link-btn:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ========================================
   ACTIVE FILTER CHIPS
   ======================================== */
.active-filter-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    padding: 4px 0;
    margin: 0 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.active-filter-chips::-webkit-scrollbar {
    display: none;
}

.active-filter-chips:empty {
    display: none;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px 4px 10px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    color: var(--gray-700);
    white-space: nowrap;
    transition: all 0.15s ease;
    max-width: 180px;
}

.filter-chip:hover {
    background: var(--gray-200);
    border-color: var(--gray-300);
}

.filter-chip--olt {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.25);
    color: var(--primary-color);
}

.filter-chip--olt:hover {
    background: rgba(102, 126, 234, 0.18);
    border-color: rgba(102, 126, 234, 0.35);
}

.filter-chip--search {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.25);
    color: #059669;
}

.filter-chip--search:hover {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.35);
}

.filter-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.filter-chip-icon svg {
    width: 12px;
    height: 12px;
}

.filter-chip-label {
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.filter-chip-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    transition: all 0.15s ease;
    padding: 0;
    flex-shrink: 0;
}

.filter-chip-remove:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.filter-chip-remove svg {
    width: 10px;
    height: 10px;
}

/* Dark mode support */
html[data-theme="dark"] .filter-dropdown-btn {
    background: #3a3a3c;
    border-color: #6e6e73;
    color: #f5f5f7;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

html[data-theme="dark"] .filter-dropdown-btn:hover {
    background: #48484a;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .filter-dropdown-btn[aria-expanded="true"] {
    background: #48484a;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .filter-dropdown-panel {
    background: #2c2c2e;
    border-color: #48484a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .filter-search-section {
    background: transparent;
}

html[data-theme="dark"] .filter-search-input {
    background: #3a3a3c;
    border-color: #6e6e73;
    color: #f5f5f7;
}

html[data-theme="dark"] .filter-search-input::placeholder {
    color: #98989d;
}

html[data-theme="dark"] .filter-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

html[data-theme="dark"] .filter-search-icon {
    color: #98989d;
}

html[data-theme="dark"] .filter-search-clear {
    background: #4a4a4e;
    color: #d1d1d6;
}

html[data-theme="dark"] .filter-search-clear:hover {
    background: #5a5a5e;
    color: #f5f5f7;
}

html[data-theme="dark"] .filter-search-suggestions {
    background: #2c2c2e;
    border-color: #48484a;
}

html[data-theme="dark"] .search-suggestion-item {
    border-color: #3a3a3c;
}

html[data-theme="dark"] .search-suggestion-item:hover {
    background: #3a3a3c;
}

html[data-theme="dark"] .suggestion-name {
    color: #e5e5e7;
}

html[data-theme="dark"] .suggestion-path {
    color: #98989d;
}

html[data-theme="dark"] .filter-dropdown-divider {
    background: #48484a;
}

html[data-theme="dark"] .filter-section-label {
    color: #aeaeb2;
}

html[data-theme="dark"] .olt-checkbox-item {
    color: #e5e5e7;
}

html[data-theme="dark"] .olt-checkbox-item:hover {
    background: #3a3a3c;
}

html[data-theme="dark"] .olt-checkbox-item .olt-name {
    color: #e5e5e7;
}

html[data-theme="dark"] .filter-dropdown-content {
    background: #2c2c2e;
}

html[data-theme="dark"] .filter-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

html[data-theme="dark"] .filter-dropdown-content::-webkit-scrollbar-track {
    background: #1c1c1e;
}

html[data-theme="dark"] .filter-dropdown-content::-webkit-scrollbar-thumb {
    background: #48484a;
    border-radius: 3px;
}

html[data-theme="dark"] .filter-dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #6e6e73;
}

html[data-theme="dark"] .filter-section-actions {
    border-color: #48484a;
}

html[data-theme="dark"] .filter-link-btn {
    color: var(--primary-light);
    font-weight: 500;
}

html[data-theme="dark"] .filter-link-btn:hover {
    color: #60a5fa;
    text-decoration: underline;
}

html[data-theme="dark"] .filter-chip {
    background: #3a3a3c;
    border-color: #48484a;
    color: #e5e5e7;
}

html[data-theme="dark"] .filter-chip:hover {
    background: #4a4a4e;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .filter-dropdown-btn {
        padding: 8px;
    }

    .filter-dropdown-arrow {
        display: none;
    }

    .filter-dropdown-panel {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        min-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(100%);
        max-height: 70vh;
    }

    .filter-dropdown-panel.show {
        transform: translateY(0);
    }

    /* Header search bar mobile */
    .header-search-container {
        max-width: none;
        flex: 1;
        margin-left: 8px;
        margin-right: 8px;
    }

    .header-search-input {
        font-size: 0.8rem;
        height: 36px;
        padding: 6px 32px 6px 36px;
    }

    .header-search-suggestions {
        max-height: 250px;
    }
}
