/* ===== SIDEBAR ===== */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-surface);
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: width var(--transition-normal);
}

body.sidebar-expanded {
    --sidebar-width: 560px;
}

.sidebar-tabs {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    padding: 4px 4px 0;
    gap: 2px;
}

.sidebar-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border: none;
    background: transparent;
    color: var(--gray-500);
    font-size: var(--text-xs);
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    position: relative;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.sidebar-expand-btn {
    width: 40px;
    border: none;
    border-left: 1px solid var(--gray-200);
    background: transparent;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.sidebar-expand-btn:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.sidebar-expand-btn.active {
    background: var(--bg-surface);
    color: var(--primary);
}

.sidebar-tab i {
    font-size: var(--text-xl);
}

.sidebar-tab:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.sidebar-tab.active {
    background: var(--bg-surface);
    color: var(--primary);
    font-weight: 600;
}

.sidebar-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
}

.sidebar-tab .badge {
    position: absolute;
    top: 6px;
    right: 50%;
    transform: translateX(16px);
    background: var(--danger);
    color: white;
    font-size: var(--text-2xs);
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
}

.sidebar-content {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.sidebar-content.active {
    display: flex;
}

.sidebar-extra-panel {
    display: none;
}

body.sidebar-expanded .sidebar-content.active {
    padding-right: 260px;
}

body.sidebar-expanded .sidebar-content.active .sidebar-extra-panel {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    overflow-y: auto;
    border-left: 1px solid var(--gray-200);
    background: var(--gray-50);
    padding: 12px;
}

.extra-title {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-600);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.extra-card {
    background: var(--bg-surface);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 10px;
    margin-bottom: 10px;
}

.extra-kv {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 6px;
}

.extra-kv strong {
    color: var(--gray-800);
}

.extra-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 6px 8px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
}

.extra-item.extra-item-editor {
    display: block;
}

.extra-inline-editor {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.extra-policy-select,
.extra-policy-date {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 5px 8px;
    font-size: var(--text-xs);
    color: var(--gray-700);
    background: var(--bg-surface);
}

.extra-item-main {
    min-width: 0;
}

.extra-item-title {
    font-size: var(--text-sm);
    color: var(--gray-800);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.extra-item-sub {
    font-size: var(--text-xs);
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.extra-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.sidebar-section {
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-section.flex-grow {
    flex: 1;
    overflow-y: auto;
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.section-header h3 {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h3 i {
    font-size: var(--text-md);
    color: var(--gray-400);
}

.section-actions {
    display: flex;
    gap: 4px;
}

/* ===== COMPACT TECH GROUPS BAR ===== */
.tech-groups-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}

.tech-group-chip {
    flex: 1;
    min-width: 0;
    padding: 5px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--bg-surface);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
    user-select: none;
}

.tech-group-chip:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.tech-group-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.tech-group-chip.off {
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-400);
}

.tech-group-chip .chip-count {
    font-weight: 400;
    font-size: 11px;
    opacity: 0.75;
}



/* Tech list dropdown */
.tech-list-dropdown {
    margin-top: 6px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--bg-surface);
    max-height: 40vh;
    overflow-y: auto;
    padding: 4px;
}

/* ===== TECH FILTER ===== */
.techs-filter {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 4px;
}

/* Tech Groups */
.tech-group {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 6px;
    overflow: visible;
}

.tech-group.collapsed .tech-group-body {
    display: none;
}

.tech-group.collapsed .tech-group-title i {
    transform: rotate(-90deg);
}

.tech-group-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--gray-50);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--gray-700);
    transition: background var(--transition-normal);
}

.tech-group-header:hover {
    background: var(--gray-100);
}

.tech-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    cursor: pointer;
}

.tech-group-title i {
    font-size: var(--text-2xs);
    color: var(--gray-400);
    transition: transform var(--transition-normal);
}

.tech-group-actions {
    display: flex;
    gap: 4px;
}

.btn-mini {
    width: 24px;
    height: 24px;
    border: 1px solid var(--gray-200);
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--gray-400);
}

.btn-mini:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}

.btn-mini.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.tech-group-count {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--gray-400);
    background: var(--gray-200);
    padding: 2px 8px;
    border-radius: 10px;
}

.tech-group-body {
    padding: 4px;
}

.tech-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition-normal);
}

.tech-filter-item:hover {
    background: var(--gray-50);
}

.tech-filter-item.selected {
    background: var(--gray-100);
}

.tech-filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

.tech-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tech-filter-item .tech-name {
    flex: 1;
    font-size: var(--text-base);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tech-filter-item .tech-count {
    font-size: var(--text-xs);
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 10px;
}

/* ===== DAYS FILTER ===== */
.days-filter {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.day-chip {
    padding: 5px 10px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: var(--bg-surface);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    flex: 1;
    text-align: center;
    min-width: 0;
}

.day-chip:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.day-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 1px 2px rgba(79, 70, 229, 0.25);
}

/* ===== COLLAPSIBLE SECTIONS ===== */
.section-header.collapsible {
    cursor: pointer;
    margin-bottom: 0;
    padding: 8px 0;
}

.section-header.collapsible:hover {
    color: var(--primary);
}

.section-header .toggle-icon {
    transition: transform var(--transition-normal);
}

.sidebar-section.collapsed .section-body {
    display: none;
}

.sidebar-section.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.section-body {
    padding-top: 12px;
}

/* ===== TASK SEARCH BAR ===== */
.task-search-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    margin: 0 0 6px 0;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.task-search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
    background: var(--bg-surface);
}

.task-search-bar i.fa-search {
    color: var(--gray-400);
    font-size: var(--text-xs);
    flex-shrink: 0;
}

.task-search-bar input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: var(--text-xs);
    color: var(--gray-700);
    min-width: 0;
}

.task-search-bar input::placeholder {
    color: var(--gray-400);
    font-size: var(--text-xs);
}

.task-search-clear {
    display: none;
    border: none;
    background: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0 2px;
    font-size: var(--text-2xs);
    flex-shrink: 0;
}

.task-search-clear:hover {
    color: var(--danger);
}

.task-search-bar.has-query .task-search-clear {
    display: block;
}

.task-search-bar.has-query i.fa-search {
    color: var(--primary);
}

/* Search highlight / dim styles */
.task-item.search-highlight {
    background: rgba(59, 130, 246, 0.08) !important;
    border-left: 3px solid var(--primary);
    padding-left: 5px;
}

.sched-task-block.search-dimmed,
.sched-week-task.search-dimmed {
    opacity: 0.15 !important;
    pointer-events: none;
}

.sched-task-block.search-match,
.sched-week-task.search-match {
    box-shadow: 0 0 0 2px var(--primary), 0 2px 8px rgba(59, 130, 246, 0.25) !important;
    z-index: 10 !important;
}

/* ===== TASKS LIST ===== */
.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
}

/* Tech sections in tasks list */
.tasks-tech-section {
    background: var(--bg-surface);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 8px;
}

.tasks-tech-section.collapsed .tasks-tech-body {
    display: none;
}

.tasks-tech-section.collapsed .tasks-tech-header::after {
    transform: rotate(-90deg);
}

.tasks-tech-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--gray-50);
    cursor: pointer;
    font-weight: 600;
    transition: background var(--transition-normal);
    flex-wrap: nowrap;
}

.tasks-tech-header::after {
    content: '▼';
    font-family: inherit;
    font-size: var(--text-2xs);
    color: var(--gray-400);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: 4px;
}

.tasks-tech-header:hover {
    background: var(--gray-100);
}

.tasks-tech-name {
    font-size: var(--text-base);
    color: var(--gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
}

.tasks-tech-count {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--gray-500);
    white-space: nowrap;
    flex-shrink: 0;
}

.tasks-tech-body {
    padding: 8px;
}

/* Task day badge */
.task-day-badge {
    display: inline-block;
    padding: 2px 6px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: var(--text-2xs);
    font-weight: 700;
    margin-right: 4px;
}

.task-group {
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 6px;
}

.task-group.collapsed .task-group-body {
    display: none;
}

.task-group.collapsed .task-group-header::after {
    transform: rotate(-90deg);
}

.task-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
}

.task-group-header::after {
    content: '▼';
    font-family: inherit;
    font-size: var(--text-2xs);
    color: var(--gray-400);
    transition: transform var(--transition-normal);
}

.task-group-header:hover {
    background: var(--gray-50);
}

.task-group-title {
    font-weight: 600;
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-group-title .tech-color-dot {
    width: 10px;
    height: 10px;
}

.task-group-count {
    font-size: var(--text-xs);
    color: var(--gray-400);
}

.task-group-body {
    padding: 8px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--bg-surface);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    font-size: var(--text-sm);
}

.task-item:last-child {
    margin-bottom: 0;
}

.task-item:hover {
    background: var(--gray-50);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.task-item.highlighted {
    background: #dbeafe;
    box-shadow: inset 3px 0 0 var(--primary);
}

.task-time {
    font-weight: 600;
    color: var(--gray-600);
    min-width: 45px;
}

.task-address {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--gray-700);
}

.task-travel {
    font-size: var(--text-xs);
    font-weight: 500;
}

.task-travel.good { color: var(--success); }
.task-travel.medium { color: var(--warning); }
.task-travel.bad { color: var(--danger); }

/* ===== PRE-CANCELLED TASK (CSV status=Cancelled) ===== */
.task-item.task-csv-cancelled {
    opacity: 0.5;
    background: repeating-linear-gradient(
        -45deg, 
        transparent, 
        transparent 6px, 
        rgba(229, 57, 53, 0.04) 6px, 
        rgba(229, 57, 53, 0.04) 12px
    );
    border-left: 3px solid #e5393580;
}
.task-item.task-csv-cancelled .task-address {
    text-decoration: line-through;
    color: var(--gray-500);
}
.task-item.task-csv-cancelled .task-time {
    color: var(--gray-400);
}
.task-item.task-csv-cancelled:hover {
    opacity: 0.75;
}
.task-cancelled-badge {
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e53935;
    background: #e5393512;
    border: 1px solid #e5393530;
    border-radius: 3px;
    padding: 1px 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--gray-400);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state p {
    margin-bottom: 16px;
}

.empty-state.success {
    color: var(--success);
}

.empty-state.success i {
    opacity: 1;
}


/* ===== ALERTS LIST ===== */
.alerts-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alerts-subtitle {
    margin-top: 8px;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.alerts-subtitle.muted {
    color: var(--gray-500);
}

.alert-item {
    padding: 12px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: var(--radius);
    border-left: 4px solid var(--warning);
}

.alert-item.error {
    background: #fee2e2;
    border-color: #fca5a5;
    border-left-color: var(--danger);
}

.alert-item.warning {
    background: #fef3c7;
    border-color: #fcd34d;
    border-left-color: var(--warning);
}

.alert-item.muted {
    background: var(--gray-100);
    border-color: var(--gray-300);
    border-left-color: var(--gray-400);
}

.alert-address {
    font-weight: 600;
    font-size: var(--text-base);
    margin-bottom: 4px;
    color: var(--gray-800);
}

.alert-reason {
    font-size: var(--text-sm);
    color: var(--danger);
    margin-bottom: 8px;
}

.alert-item.warning .alert-reason {
    color: #92400e;
}

.alert-tech {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-bottom: 8px;
}

.alert-actions {
    display: flex;
    gap: 8px;
}


/* ===== NOWE STYLE DLA ULEPSZORNEGO UX ===== */

/* Filtr tygodnia kalendarzowego */
.compact-weeks {
    padding: 6px 16px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.week-filter-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.week-filter-row .btn-xs {
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    border: 1px solid var(--gray-300);
    cursor: pointer;
    color: var(--gray-500);
    font-size: var(--text-2xs);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.week-filter-row .btn-xs:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.week-filter-label {
    flex: 1;
    padding: 4px 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
    transition: all var(--transition-fast);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.week-filter-label:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.week-filter-label.has-week {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    font-weight: 700;
}

.week-filter-label.has-week:hover {
    background: var(--primary-dark, #2563eb);
}

/* Kompaktowy filtr dni w sidebarze */
.compact-days {
    padding: 8px 16px;
    border-bottom: 1px solid var(--gray-200);
}

.days-filter-inline {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}

.days-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gray-500);
    margin-right: 2px;
    white-space: nowrap;
}

/* Dropdown wyboru grup */
.group-filter-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dropdown-toggle:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.dropdown-arrow {
    font-size: var(--text-2xs);
    color: var(--gray-400);
    transition: transform var(--transition-normal);
}

.group-filter-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    background: var(--bg-surface);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.group-filter-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background var(--transition-fast);
    font-size: var(--text-base);
}

.dropdown-item:hover {
    background: var(--gray-50);
}

.dropdown-item.active {
    background: var(--primary);
    color: white;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    opacity: 0.7;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 4px 0;
}

.tasks-tech-header {
    position: relative;
}

/* ===== SIDEBAR COLLAPSIBLE SECTIONS ===== */
.sidebar-collapse {
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-collapse-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: var(--gray-50);
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.sidebar-collapse-btn:hover {
    background: var(--gray-100);
}

.sidebar-collapse-btn span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-collapse-btn span i:first-child {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.sidebar-collapse-arrow {
    font-size: 11px;
    color: var(--gray-400);
    transition: transform 0.2s ease;
}

.sidebar-collapse-body {
    padding: 12px 16px;
    border-top: 1px solid var(--gray-100);
    background: var(--bg-surface);
}

.sidebar-collapse-body .hotel-form .form-group {
    margin-bottom: 8px;
}

.sidebar-collapse-body .hotel-import-export {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
