@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Kaspi.kz */
    --primary: #F14635; /* Kaspi Red */
    --primary-hover: #E33E2F;
    --primary-light: #FDECEA;
    --success: #00A651;
    --success-hover: #008D45;
    --danger: #E31836;
    --warning: #F5A623;
    
    /* Grays & Backgrounds */
    --bg-app: #F2F4F7;
    --bg-card: #FFFFFF;
    --text-main: #222222;
    --text-muted: #727272;
    --border: #EAEAEA;
    
    /* Metrics */
    --sidebar-width: 280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px; /* Kaspi standard */
    --radius-lg: 24px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--bg-app);
    color: var(--text-main);
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

.app-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 50;
    box-shadow: 4px 0 20px rgba(0,0,0,0.03);
}

.sidebar-logo {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo img {
    max-height: 36px;
}

.sidebar-nav {
    flex: 1;
    padding: 24px 12px;
}

.sidebar-nav ul { list-style: none; }
.sidebar-nav li { margin-bottom: 4px; }

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    font-size: 14px;
}

.sidebar-nav a i {
    font-size: 20px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-nav a:hover {
    background: var(--bg-app);
}

.sidebar-nav a.active {
    background: var(--primary-light);
    color: var(--primary);
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.top-header {
    height: var(--header-height);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    width: 100%;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-app);
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    width: 360px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.search-box:focus-within {
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: var(--text-main);
    margin-left: 8px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    color: var(--text-main);
}

.user-profile .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-size: 16px;
}

/* Page Body */
.page-body {
    padding: 40px;
    flex: 1;
}

.page-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 32px;
}

/* ===============================
   COMPONENTS
=============================== */

/* Dashboard Grid - Kaspi Style Tiles */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    width: 100%;
}

.widget {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.widget:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.widget-icon {
    width: 64px; height: 64px;
    border-radius: 20px;
    background: var(--bg-app);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    transition: var(--transition);
}

.widget:hover .widget-icon {
    background: var(--primary-light);
    transform: scale(1.05);
}

.widget h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.widget p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover { 
    background: var(--primary-hover); 
    box-shadow: 0 4px 15px rgba(241, 70, 53, 0.3); 
}

.btn-secondary {
    background: #F2F4F7;
    color: var(--text-main);
}
.btn-secondary:hover { background: #E5E7EB; }

/* Tables */
.table-container {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: #F9FAFB;
    color: var(--text-muted);
    font-weight: 700;
    padding: 18px 24px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    font-size: 14px;
}

.table tbody tr:hover { background-color: #FDFDFD; }
.table td a { color: var(--primary); font-weight: 600; text-decoration: none; }
.table td a:hover { text-decoration: underline; }

/* Forms & Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

input[type="text"], input[type="date"], input[type="number"], select, .form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #D1D5DB;
    font-size: 15px;
    color: var(--text-main);
    background: var(--bg-card);
    transition: all 0.2s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Modals / Popups */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show { display: flex; }

.modal, .popup1, .filter-popup, .popup-vozduh, .popup {
    background: var(--bg-card);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    border: none;
    display: none;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.modal-header {
    padding: 32px 32px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title { font-size: 20px; font-weight: 800; }

.modal-close {
    background: #F2F4F7; width: 36px; height: 36px; border-radius: 50%; border: none; font-size: 20px; color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: #E5E7EB; color: var(--text-main); }

.modal-body { padding: 0 32px 32px; }
.modal-footer { padding: 24px 32px; background: #F9FAFB; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 12px; border-radius: 0 0 24px 24px; }

/* Status Badges */
.badge {
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-warning { background: #FEF3C7; color: #B45309; }
.badge-danger { background: #FEE2E2; color: #991B1B; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1024px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .mobile-toggle { display: block; margin-right: 16px; }
    
    .sidebar-overlay {
        display: none;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5); z-index: 40;
    }
    .sidebar-overlay.show { display: block; }
}

@media (max-width: 768px) {
    .page-title { flex-direction: column; align-items: flex-start; gap: 16px; }
    .toolbar { flex-direction: column; align-items: stretch; }
    .search-box { width: 100%; }
    .page-body { padding: 16px; }
    .top-header { padding: 0 16px; }
}

/* Калькулятор материалов (Kaspi Style) */
.popup-vozduh {
    width: 900px;
    max-width: 95vw;
    z-index: 1001;
    padding: 24px;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-vozduh.show-voz {
    display: block !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.popup-vozduh .content {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
}

.popup-vozduh .inputs-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-vozduh .table-section {
    flex: 1;
}

.popup-vozduh label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.popup-vozduh select,
.popup-vozduh input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-main);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.popup-vozduh #button-callculate {
    margin-top: 15px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.popup-vozduh #button-callculate:hover {
    background: var(--primary-hover);
}

.popup-vozduh .table-section table {
    width: 100%;
    border-collapse: collapse;
}

.popup-vozduh .table-section th,
.popup-vozduh .table-section td {
    padding: 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.popup-vozduh .table-section th {
    font-weight: 500;
    color: var(--text-secondary);
}

.popup-vozduh .save-vozduh,
.popup-vozduh .close-vozduh,
.popup-vozduh .save-zayavka {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.popup-vozduh .save-vozduh,
.popup-vozduh .save-zayavka {
    background: var(--success);
    color: white;
}

.popup-vozduh .save-vozduh:hover,
.popup-vozduh .save-zayavka:hover {
    background: var(--success-hover);
}

.popup-vozduh .close-vozduh {
    background: #E5E7EB;
    color: var(--text-muted);
    margin-left: 10px;
}

.popup-vozduh .close-vozduh:hover {
    background: #D1D5DB;
}

@media (max-width: 768px) {
    .popup-vozduh .content {
        flex-direction: column;
    }
}

/* ===============================
   GLOBAL SEARCH DROPDOWN
=============================== */
.search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 420px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    z-index: 9999;
    max-height: 480px;
    overflow-y: auto;
    animation: searchFadeIn 0.15s ease;
}
.search-dropdown.open { display: block; }

@keyframes searchFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Группа */
.sr-group { padding: 6px 0; border-bottom: 1px solid var(--border); }
.sr-group:last-of-type { border-bottom: none; }

.sr-group-header {
    padding: 8px 16px 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Строка результата */
.sr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.15s;
}
.sr-item:hover, .sr-item.active {
    background: var(--bg-app);
    color: var(--primary);
}

.sr-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sr-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sr-title {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sr-title mark {
    background: #FEF3C7;
    color: #92400E;
    border-radius: 3px;
    padding: 0 2px;
}

.sr-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sr-arrow {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.15s;
}
.sr-item:hover .sr-arrow, .sr-item.active .sr-arrow { opacity: 1; }

/* States */
.sr-empty, .sr-error {
    padding: 24px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}
.sr-error { color: var(--danger); }

.sr-loading {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
}
.sr-spinner {
    width: 16px; height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.sr-footer {
    padding: 10px 16px;
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-app);
    border-top: 1px solid var(--border);
    text-align: right;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

@media (max-width: 600px) {
    .search-dropdown { width: calc(100vw - 32px); left: -8px; }
}

/* Dashboard Thickness Breakdown */
.thickness-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.thickness-pill {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(79, 70, 229, 0.1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.thickness-pill b {
    color: var(--text-main);
    margin-left: 4px;
}

/* Type Picker (Visual Duct Selection) */
.type-picker-container {
    margin-bottom: 24px;
}

.type-picker-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 400px;
    overflow-y: auto;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #F9FAFB;
}

.type-card {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.type-card:hover {
    background: #FFF5F4;
    border-color: var(--primary-light);
}

.type-card.active {
    background: #FFF5F4;
    border-color: var(--primary);
    box-shadow: none;
}

.type-card-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #F3F4F6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
}

.type-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.type-card-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.type-picker-filter {
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.type-filter-btn {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.type-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Scrollbar for picker */
.type-picker-grid::-webkit-scrollbar { width: 6px; }
.type-picker-grid::-webkit-scrollbar-track { background: transparent; }
.type-picker-grid::-webkit-scrollbar-thumb { background: #E5E7EB; border-radius: 10px; }
.type-picker-grid::-webkit-scrollbar-thumb:hover { background: #D1D5DB; }

/*   (Kaspi Style) */

/*   (Kaspi Style Responsive) */
.popup-vozduh {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 960px;
    max-width: 95vw;
    height: 85vh;
    border-radius: var(--radius-lg);
    background: #fff;
    display: none;
    flex-direction: column;
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.popup-vozduh.show-voz {
    display: flex;
}

.popup-vozduh .modal-header {
    padding: 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.popup-vozduh .modal-close {
    width: 36px;
    height: 36px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-muted);
    border: none;
    cursor: pointer;
}

.popup-vozduh .modal-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    padding: 0;
    flex: 1;
    overflow: hidden;
}

.inputs-section {
    padding: 32px;
    overflow-y: auto;
    border-right: 1px solid var(--border);
}

.results-section {
    padding: 32px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.results-section h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*     */
@media (max-width: 768px) {
    .popup-vozduh {
        top: 0;
        left: 0;
        transform: none;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .popup-vozduh .modal-body {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .inputs-section {
        padding: 20px;
        border-right: none;
        overflow-y: visible;
    }

    .results-section {
        padding: 20px;
        background: #fff;
        border-top: 1px solid var(--border);
        padding-bottom: 100px; 
    }

    .vozduh-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px 20px;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        z-index: 10;
    }

    .save-vozduh { order: 2; }
    .close-vozduh { order: 1; }
}

/*     */
.result-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}

.result-row:last-child { border-bottom: none; }

.result-label { color: var(--text-muted); font-size: 13px; font-weight: 500; }
.result-value { font-weight: 700; font-size: 14px; color: var(--text-main); }
.result-value.highlight { color: var(--primary); font-size: 18px; }

#inputsContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.type-picker-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.type-filter-btn {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.type-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(241, 70, 53, 0.2);
}

.type-picker-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #F9FAFB;
}

.type-card {
    background: #fff;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.type-card:hover { background: #FFF5F4; border-color: var(--primary-light); }
.type-card.active { background: #FFF5F4; border-color: var(--primary); }

.type-card-icon {
    width: 40px; height: 40px;
    background: #F3F4F6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.type-card-label { font-size: 14px; font-weight: 600; color: var(--text-main); }

.vozduh-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
.save-vozduh { background: var(--success); color: #fff; width: 100%; }
.close-vozduh { background: #EBEEF0; color: var(--text-main); width: 100%; }
