
/* ---- GLOBAL MOBILE WIDTH FIX ---- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img, video, iframe, table {
    max-width: 100%;
}
@media (max-width: 760px) {
    body { width: 100%; }
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
    .language-switch {
        right: 8px !important;
        top: 8px !important;
        max-width: calc(100vw - 16px) !important;
    }
    .social-links a {
        margin: 6px 4px;
    }
}

/* Встановлюємо синій для Дніпра */
:root {
    --dnipro-blue: #004D99;
    --dnipro-light: #f0f8ff;
}
body { 
    font-family: 'Arial', sans-serif; 
    background-color: #f4f4f9; 
    margin: 0; 
    padding: 0; 
    color: #333;
}
.container { 
    max-width: 850px; 
    margin: 25px auto; /* ГАРАНТОВАНЕ ЦЕНТРУВАННЯ БЛОКУ */
    padding: 0 15px; 
}
/* ------------------ БЛОК ЗАГОЛОВКІВ ТА ЛОГОТИПУ ------------------ */
.header-block {
    background-color: white;
    padding: 30px 0 15px;
    border-bottom: 3px solid var(--dnipro-blue);
    text-align: center;
    margin-bottom: 30px;
}
.site-logo {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--dnipro-blue);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.lightning-icon {
    color: gold; 
    font-size: 1.2em;
    margin-right: 5px;
    vertical-align: middle;
}
.region-subheader {
    font-size: 1.1em;
    color: #6c757d;
    margin-bottom: 15px;
}
.main-title {
    font-size: 1.7em;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}
/* ------------------ СТИЛІ ФОТО ТА CTA ------------------ */
.hero-image-container {
    margin-bottom: 30px; 
    text-align: center; 
}
.hero-image {
    max-width: 100%;       
    height: auto;          
    border-radius: 12px;    
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); 
    display: block;        
    margin: 0 auto;        
}
.intro-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.5;
    color: #555;
    font-weight: 500;
    text-align: center;
}
/* ------------------ СТИЛІ КНОПОК МІСТА / ГРУП ------------------ */
.region-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; 
    margin-top: 30px;
}
/* Кнопки міст (на index.html) */
.region-list a.queue-button {
    flex-basis: 45%; 
    min-width: 280px; 
}
/* Кнопки груп (на сторінках міст) */
.group-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 кнопки в ряд */
    gap: 15px;
    margin-top: 30px;
}
@media (max-width: 900px) {
    .group-buttons {
        grid-template-columns: repeat(2, 1fr); /* 2 кнопки на планшетах */
    }
}
@media (max-width: 600px) {
    .region-list a.queue-button { flex-basis: 100%; } /* 1 кнопка на мобільних */
    .group-buttons {
        grid-template-columns: 1fr; /* 1 кнопка на мобільних */
    }
}

.queue-button {
    background-color: var(--dnipro-light);
    color: var(--dnipro-blue);
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    border: 2px solid var(--dnipro-blue);
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
}
.queue-button:hover {
    background-color: var(--dnipro-blue);
    color: white;
    transform: translateY(-2px);
}
/* ------------------ СТИЛІ ФУТЕРУ ТА ТЕЛЕГРАМУ ------------------ */
.social-footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}
.social-links a {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}
.social-links a.telegram { background-color: #0088cc; }
.social-links a.instagram { background-color: #E1306C; }
.footer-info {
    margin-top: 20px; 
    font-size: 0.85em; 
    color: #6c757d;
    line-height: 1.5;
}
.support-block {
    margin-top: 30px;
    font-size: 0.9em;
    color: #888;
}
/* СТИЛЬ ДЛЯ КНОПКИ "НАЗАД" */
.back-button {
    background-color: #6c757d;
    color: white;
    border: none;
    margin-top: 20px;
    padding: 12px 25px;
    display: inline-block;
    max-width: 300px;
}
.back-button:hover {
    background-color: #5a6268;
    color: white;
    transform: translateY(-1px);
}

#schedule {
    margin-top: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
}

/* ------------------ ЩОДЕННИЙ БЛОК ПЛАНОВИХ РОБІТ ------------------ */
.top-works-widget {
    max-width: 1120px;
    margin: 25px auto 30px;
    padding: 22px 15px;
}
.works-head { text-align: center; margin-bottom: 18px; }
.works-badge {
    display: inline-block;
    margin: 0 0 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: 13px;
    font-weight: 700;
}
.works-main-title {
    text-align: center;
    margin: 0 0 8px;
    font-size: 26px;
    color: #111827;
}
.works-main-text {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 10px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.55;
}
.works-update-line {
    margin: 10px 0 0;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}
.works-top-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 22px;
}
.works-action-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.works-action-blue { background: #2563eb; }
.works-action-green { background: #22c55e; }
.works-action-btn:hover { opacity: 0.92; }
.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.works-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}
.works-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.works-card h3 {
    margin: 0;
    font-size: 21px;
    color: #111827;
}
.works-count {
    white-space: nowrap;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    font-weight: 700;
}
.works-table-wrap { overflow-x: auto; }
.works-table {
    width: 100%;
    border-collapse: collapse;
}
.works-table th,
.works-table td {
    padding: 11px 9px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}
.works-table th {
    background: #f8fafc;
    color: #111827;
    font-weight: 700;
}
.works-table td:nth-child(2) {
    white-space: nowrap;
    color: #b91c1c;
    font-weight: 700;
}
.works-card-action {
    margin-top: 14px;
    text-align: center;
}
.works-card-action a {
    display: inline-block;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}
.works-card-action a:hover { text-decoration: underline; }
.works-telegram-box {
    margin-top: 20px;
    text-align: center;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 18px;
    padding: 18px;
}
.works-telegram-box p {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.5;
}
.works-telegram-btn {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
}
.works-telegram-btn:hover { opacity: 0.92; }
@media (max-width: 768px) {
    .works-grid { grid-template-columns: 1fr; }
    .works-main-title { font-size: 22px; }
    .works-card-head { align-items: flex-start; flex-direction: column; }
    .works-card h3 { font-size: 19px; }
    .works-table th, .works-table td { font-size: 13px; padding: 9px 7px; }
    .works-action-btn { width: 100%; box-sizing: border-box; text-align: center; }
}


/* ------------------ WATER PAGE / ВОДОПОСТАЧАННЯ ------------------ */
.water-page { max-width: 960px; }
.water-hero-card,
.water-section,
.water-mini-widget {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.07);
    margin: 18px 0;
}
.water-hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}
.water-hero-card h2,
.water-section h2,
.water-mini-widget h2 { margin: 8px 0 8px; color: #0f172a; }
.water-hero-card p,
.water-muted,
.water-mini-widget p { color: #475569; line-height: 1.5; margin: 0; }
.water-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 13px;
    font-weight: 900;
}
.water-telegram-btn,
.water-main-btn,
.water-toggle-finished {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    padding: 12px 16px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.water-telegram-btn { background: #16a34a; }
.water-toggle-finished { background: #e2e8f0; color: #0f172a; }
.water-list { display: grid; gap: 12px; margin-top: 12px; }
.water-card {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15,23,42,0.05);
}
.water-card summary {
    list-style: none;
    cursor: pointer;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}
.water-card summary::-webkit-details-marker { display: none; }
.water-title { font-size: 16px; font-weight: 900; color: #0f172a; line-height: 1.35; }
.water-date { display: block; margin-top: 5px; font-size: 12px; color: #64748b; font-weight: 700; }
.water-arrow {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}
.water-card[open] .water-arrow { transform: rotate(180deg); }
.water-full-text { padding: 0 15px 15px; white-space: pre-wrap; color: #334155; line-height: 1.55; }
.water-empty {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    padding: 16px;
    color: #64748b;
    text-align: center;
    font-weight: 700;
}
.water-table-wrap { overflow-x: auto; margin-top: 12px; }
.water-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.water-table th,
.water-table td { padding: 12px 10px; border-bottom: 1px solid #e5e7eb; text-align: left; vertical-align: top; font-size: 14px; }
.water-table th { background: #eff6ff; color: #0f172a; font-weight: 900; }
.water-mini-widget { background: linear-gradient(135deg, #ecfeff, #ffffff); border-color: #bae6fd; }
.water-mini-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.water-mini-items { margin: 12px 0 0; display: grid; gap: 8px; }
.water-mini-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 10px 12px; color: #0f172a; font-weight: 800; }
@media (max-width: 720px) {
    .water-hero-card { display: block; }
    .water-telegram-btn,
    .water-main-btn,
    .water-toggle-finished { width: 100%; margin-top: 12px; white-space: normal; text-align: center; }
    .water-card summary { padding: 14px 12px; }
    .water-title { font-size: 15px; }
    .water-section,
    .water-hero-card,
    .water-mini-widget { padding: 16px; border-radius: 18px; }
}

/* ===== COMPACT WIDE UI + WATER/GAS SEO PATCH ===== */
:root {
    --service-blue: #004D99;
    --service-card: #ffffff;
    --service-border: #e2e8f0;
    --service-muted: #64748b;
}
@media (min-width: 901px) {
    .container {
        max-width: 1180px;
        margin-top: 18px;
        margin-bottom: 18px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .main-content {
        max-width: 1180px;
    }
    .water-page,
    .gas-page,
    .utility-page {
        max-width: 1120px;
    }
    .header-block {
        padding: 22px 0 10px;
        margin-bottom: 20px;
    }
    .site-logo {
        font-size: 2.1em;
    }
    .main-title {
        font-size: 1.55em;
        margin-bottom: 12px;
    }
    .region-subheader {
        margin-bottom: 10px;
    }
    .intro-text {
        font-size: 1.08em;
        margin-bottom: 24px;
    }
    .hero-image-container {
        margin-bottom: 20px;
    }
    .hero-image {
        max-height: 430px;
        object-fit: cover;
        width: 100%;
    }
    .region-list {
        gap: 12px;
        margin-top: 20px;
    }
    .region-list a.queue-button {
        min-width: 0;
        flex: 1 1 calc(25% - 12px);
    }
    .group-buttons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        margin-top: 20px;
    }
    .queue-button {
        padding: 14px 12px;
        font-size: 1.05em;
        border-radius: 12px;
    }
    .top-works-widget {
        max-width: 1180px;
        margin-top: 20px;
        margin-bottom: 22px;
        padding-top: 18px;
        padding-bottom: 18px;
    }
    .works-card,
    .water-hero-card,
    .water-section,
    .water-mini-widget,
    .gas-hero-card,
    .gas-section,
    .gas-mini-widget,
    .dnipro-utilities-section {
        padding: 18px;
    }
    .social-footer {
        margin-top: 34px;
    }
}
@media (max-width: 760px) {
    .queue-button {
        padding: 14px 12px;
        font-size: 1.05em;
    }
    .group-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .intro-text {
        font-size: 1.06em;
        margin-bottom: 22px;
    }
    .main-title {
        font-size: 1.35em;
    }
    .site-logo {
        font-size: 1.9em;
    }
}
@media (max-width: 390px) {
    .group-buttons {
        grid-template-columns: 1fr;
    }
}

.utility-page .intro-text {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.utility-hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.utility-seo-section p,
.utility-faq p {
    color: #334155;
    line-height: 1.65;
    margin: 0 0 10px;
}
.utility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.utility-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 11px;
    border-radius: 999px;
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    font-weight: 800;
}
.utility-tags-gas span { background: #fff7ed; border-color: #fed7aa; color: #9a3412; }
.utility-faq details {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    margin-top: 10px;
}
.utility-faq summary {
    cursor: pointer;
    font-weight: 900;
    color: #0f172a;
}

.gas-page { max-width: 1120px; }
.gas-hero-card,
.gas-section,
.gas-mini-widget {
    background: #fff;
    border: 1px solid #fed7aa;
    border-radius: 20px;
    padding: 20px;
    margin: 18px 0;
    box-shadow: 0 12px 32px rgba(154, 52, 18, .08);
}
.gas-hero-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.gas-hero-card h2,
.gas-section h2,
.gas-mini-widget h2 { margin: 8px 0 8px; color: #0f172a; }
.gas-hero-card p,
.gas-muted,
.gas-mini-widget p { color: #475569; line-height: 1.5; margin: 0; }
.gas-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffedd5;
    color: #9a3412;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 13px;
    font-weight: 900;
}
.gas-main-btn,
.gas-toggle-finished {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    padding: 11px 15px;
    background: #ea580c;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.gas-toggle-finished { background: #e2e8f0; color: #0f172a; }
.gas-list { display: grid; gap: 12px; margin-top: 12px; }
.gas-card {
    background: #fff;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(154, 52, 18, .07);
}
.gas-card summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 15px;
}
.gas-card summary::-webkit-details-marker { display: none; }
.gas-title { font-size: 16px; font-weight: 900; color: #0f172a; line-height: 1.35; }
.gas-date { display: block; margin-top: 5px; font-size: 12px; color: #64748b; font-weight: 700; }
.gas-arrow {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #ffedd5;
    color: #9a3412;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: transform .2s ease;
}
.gas-card[open] .gas-arrow { transform: rotate(180deg); }
.gas-full-text { padding: 0 15px 15px; white-space: pre-wrap; color: #334155; line-height: 1.55; }
.gas-empty {
    background: #fff7ed;
    border: 1px dashed #fdba74;
    color: #9a3412;
    border-radius: 16px;
    padding: 15px;
    font-weight: 800;
}
.gas-table-wrap { overflow-x: auto; margin-top: 12px; }
.gas-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.gas-table th,
.gas-table td { padding: 12px 10px; border-bottom: 1px solid #fed7aa; text-align: left; vertical-align: top; font-size: 14px; }
.gas-table th { background: #ffedd5; color: #0f172a; font-weight: 900; }
.gas-mini-widget { background: linear-gradient(135deg, #fff7ed, #ffffff); border-color: #fed7aa; }
.gas-mini-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.gas-mini-items { margin: 12px 0 0; display: grid; gap: 8px; }
.gas-mini-item { background: #fff; border: 1px solid #fed7aa; border-radius: 14px; padding: 10px 12px; color: #0f172a; font-weight: 800; }

.dnipro-utilities-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .07);
}
.dnipro-utilities-section h2 {
    margin: 0 0 8px;
    color: #0f172a;
}
.dnipro-utilities-section > p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.55;
}
.dnipro-utilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.dnipro-utility-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 16px;
    min-height: 150px;
}
.dnipro-utility-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.dnipro-utility-card-head span { font-size: 22px; }
.dnipro-utility-card h3 { margin: 0; color: #0f172a; }
.dnipro-utility-card p { color: #475569; margin: 0 0 10px; line-height: 1.45; }
.dnipro-utility-items { display: grid; gap: 7px; margin: 10px 0; }
.dnipro-utility-items div { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 8px 10px; font-weight: 800; color: #0f172a; }
.dnipro-utility-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 13px;
    border-radius: 13px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}
.dnipro-utility-btn:hover { text-decoration: none; opacity: .94; }
@media(max-width:720px) {
    .utility-hero-card,
    .gas-hero-card { display: block; }
    .gas-main-btn,
    .gas-toggle-finished { width: 100%; margin-top: 12px; white-space: normal; text-align: center; }
    .gas-card summary { padding: 14px 12px; }
    .gas-title { font-size: 15px; }
    .gas-section,
    .gas-hero-card,
    .gas-mini-widget { padding: 16px; border-radius: 18px; }
    .dnipro-utilities-grid { grid-template-columns: 1fr; }
}


/* ===== ORDER + ACTIVE WATER + PLANNED LIGHT PATCH ===== */
.smart-nav-cities { display: none !important; }

.utility-alert-section {
    border-width: 2px;
    box-shadow: 0 16px 38px rgba(37, 99, 235, .14);
}
.utility-alert-head h2 {
    margin: 8px 0 8px;
}
.utility-alert-head p {
    margin: 0 0 12px;
    color: #475569;
    line-height: 1.55;
}
.utility-alert-water {
    background: linear-gradient(135deg, #e0f2fe, #ffffff);
    border-color: #38bdf8;
}
.water-card-hot {
    border-color: #38bdf8;
    box-shadow: 0 14px 34px rgba(2, 132, 199, .14);
}
.water-card-hot summary {
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
}
.water-card-hot .water-title {
    color: #075985;
}
.gas-card-hot {
    border-color: #fb923c;
    box-shadow: 0 14px 34px rgba(234, 88, 12, .12);
}
.gas-card-hot summary {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.planned-light-page { max-width: 1120px; }
.planned-light-hero,
.planned-light-section {
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 20px;
    padding: 20px;
    margin: 18px 0;
    box-shadow: 0 12px 32px rgba(217, 119, 6, .08);
}
.planned-light-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #fffbeb, #ffffff);
}
.planned-light-hero h2,
.planned-light-section h2 { margin: 8px 0 8px; color: #0f172a; }
.planned-light-hero p,
.planned-light-muted { color: #475569; line-height: 1.55; margin: 0; }
.planned-light-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 13px;
    font-weight: 900;
}
.planned-light-main-btn,
.planned-light-toggle-finished {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    padding: 11px 15px;
    background: #d97706;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.planned-light-toggle-finished { background: #e2e8f0; color: #0f172a; }
.planned-light-list { display: grid; gap: 12px; margin-top: 12px; }
.planned-light-card {
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(217, 119, 6, .07);
}
.planned-light-hot {
    border-color: #f59e0b;
    box-shadow: 0 14px 34px rgba(217, 119, 6, .14);
}
.planned-light-card summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #fffbeb, #ffffff);
}
.planned-light-card summary::-webkit-details-marker { display: none; }
.planned-light-main { display: block; min-width: 0; }
.planned-light-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 7px;
}
.planned-light-badge.planned { background: #dbeafe; color: #1d4ed8; }
.planned-light-badge.emergency { background: #fee2e2; color: #991b1b; }
.planned-light-title { display: block; font-size: 16px; font-weight: 900; color: #0f172a; line-height: 1.35; }
.planned-light-date { display: block; margin-top: 5px; font-size: 12px; color: #64748b; font-weight: 700; }
.planned-light-preview { display: block; margin-top: 8px; color: #334155; font-weight: 800; line-height: 1.4; }
.planned-light-more { display: inline-flex; margin-left: 6px; background: #fef3c7; color: #92400e; border-radius: 999px; padding: 2px 7px; font-size: 12px; font-weight: 900; }
.planned-light-arrow {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: transform .2s ease;
}
.planned-light-card[open] .planned-light-arrow { transform: rotate(180deg); }
.planned-light-full { padding: 0 15px 15px; color: #334155; line-height: 1.55; }
.planned-light-full p { margin: 8px 0; }
.planned-light-full ul { margin: 8px 0 0; padding-left: 22px; }
.planned-light-full li { margin: 4px 0; }
.planned-light-empty {
    background: #fffbeb;
    border: 1px dashed #f59e0b;
    color: #92400e;
    border-radius: 16px;
    padding: 15px;
    font-weight: 800;
    text-align: center;
}
.planned-light-alert-section {
    border-width: 2px;
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #ffffff);
}
@media (min-width: 901px) {
    .dnipro-utilities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .planned-light-page {
        max-width: 1120px;
    }
}
@media (max-width: 720px) {
    .planned-light-hero { display: block; }
    .planned-light-main-btn,
    .planned-light-toggle-finished {
        width: 100%;
        margin-top: 12px;
        white-space: normal;
        text-align: center;
    }
    .planned-light-card summary { padding: 14px 12px; }
    .planned-light-title { font-size: 15px; }
    .planned-light-section,
    .planned-light-hero { padding: 16px; border-radius: 18px; }
}

/* ===== DAY / NIGHT THEME PATCH ===== */
html.theme-light {
    color-scheme: light;
}
html.theme-dark {
    color-scheme: dark;
    --dnipro-blue: #60a5fa;
    --dnipro-light: #10223f;
    --service-blue: #60a5fa;
    --service-card: #111827;
    --service-border: #263449;
    --service-muted: #cbd5e1;
}
html.theme-dark,
html.theme-dark body,
body.theme-dark {
    background: #0b1220 !important;
    color: #e5e7eb !important;
}
html.theme-dark body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 0%, rgba(96,165,250,.16), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(34,197,94,.08), transparent 30%);
    z-index: -1;
}
html.theme-dark .header-block,
html.theme-dark .smart-site-nav,
html.theme-dark .works-card,
html.theme-dark .water-hero-card,
html.theme-dark .water-section,
html.theme-dark .water-mini-widget,
html.theme-dark .gas-hero-card,
html.theme-dark .gas-section,
html.theme-dark .gas-mini-widget,
html.theme-dark .planned-light-hero,
html.theme-dark .planned-light-section,
html.theme-dark .dnipro-utilities-section,
html.theme-dark .utility-faq details,
html.theme-dark .bottom-ad-card,
html.theme-dark .mygroup-widget,
html.theme-dark .mygroup-modal,
html.theme-dark .live-status-card,
html.theme-dark .water-card,
html.theme-dark .gas-card,
html.theme-dark .planned-light-card,
html.theme-dark .dnipro-utility-card {
    background: #111827 !important;
    border-color: #263449 !important;
    color: #e5e7eb !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.28) !important;
}
html.theme-dark .header-block {
    border-bottom-color: #60a5fa !important;
}
html.theme-dark .site-logo,
html.theme-dark .smart-nav-brand,
html.theme-dark .main-title,
html.theme-dark h1,
html.theme-dark h2,
html.theme-dark h3,
html.theme-dark .works-main-title,
html.theme-dark .works-card h3,
html.theme-dark .water-hero-card h2,
html.theme-dark .water-section h2,
html.theme-dark .water-mini-widget h2,
html.theme-dark .water-title,
html.theme-dark .gas-hero-card h2,
html.theme-dark .gas-section h2,
html.theme-dark .gas-mini-widget h2,
html.theme-dark .gas-title,
html.theme-dark .planned-light-hero h2,
html.theme-dark .planned-light-section h2,
html.theme-dark .planned-light-title,
html.theme-dark .dnipro-utilities-section h2,
html.theme-dark .dnipro-utility-card h3,
html.theme-dark .bottom-ad-title,
html.theme-dark .mygroup-widget h2,
html.theme-dark .mygroup-modal h3,
html.theme-dark .mygroup-schedule strong,
html.theme-dark .live-status-main,
html.theme-dark .utility-faq summary {
    color: #f8fafc !important;
}
html.theme-dark .region-subheader,
html.theme-dark .intro-text,
html.theme-dark .works-main-text,
html.theme-dark .works-update-line,
html.theme-dark .works-telegram-box p,
html.theme-dark .footer-info,
html.theme-dark .support-block,
html.theme-dark .water-hero-card p,
html.theme-dark .water-muted,
html.theme-dark .water-mini-widget p,
html.theme-dark .water-date,
html.theme-dark .water-full-text,
html.theme-dark .gas-hero-card p,
html.theme-dark .gas-muted,
html.theme-dark .gas-mini-widget p,
html.theme-dark .gas-date,
html.theme-dark .gas-full-text,
html.theme-dark .planned-light-hero p,
html.theme-dark .planned-light-muted,
html.theme-dark .planned-light-date,
html.theme-dark .planned-light-preview,
html.theme-dark .planned-light-full,
html.theme-dark .dnipro-utilities-section > p,
html.theme-dark .dnipro-utility-card p,
html.theme-dark .bottom-ad-desc,
html.theme-dark .mygroup-widget p,
html.theme-dark .mygroup-modal p,
html.theme-dark .live-status-meta,
html.theme-dark .utility-seo-section p,
html.theme-dark .utility-faq p {
    color: #cbd5e1 !important;
}
html.theme-dark .hero-image {
    box-shadow: 0 16px 40px rgba(0,0,0,.45) !important;
}
html.theme-dark .queue-button {
    background: #10223f !important;
    color: #dbeafe !important;
    border-color: #60a5fa !important;
}
html.theme-dark .queue-button:hover {
    background: #2563eb !important;
    color: #ffffff !important;
}
html.theme-dark .smart-nav-link,
html.theme-dark .smart-nav-toggle,
html.theme-dark .smart-nav-city {
    background: #182235 !important;
    color: #e5e7eb !important;
    border-color: #263449 !important;
}
html.theme-dark .smart-nav-link:hover,
html.theme-dark .smart-nav-city:hover,
html.theme-dark .smart-nav-toggle:hover {
    background: #22314b !important;
}
html.theme-dark .smart-nav-link.active {
    background: #2563eb !important;
    color: #ffffff !important;
}
html.theme-dark .smart-nav-mygroup {
    background: #15803d !important;
    color: #ffffff !important;
}
html.theme-dark .works-count,
html.theme-dark .water-arrow,
html.theme-dark .gas-arrow,
html.theme-dark .planned-light-arrow,
html.theme-dark .planned-light-more,
html.theme-dark .water-toggle-finished,
html.theme-dark .gas-toggle-finished,
html.theme-dark .planned-light-toggle-finished,
html.theme-dark .mygroup-btn.secondary {
    background: #263449 !important;
    color: #e5e7eb !important;
    border-color: #334155 !important;
}
html.theme-dark .works-table,
html.theme-dark .water-table,
html.theme-dark .gas-table {
    background: #111827 !important;
    color: #e5e7eb !important;
}
html.theme-dark .works-table th,
html.theme-dark .water-table th,
html.theme-dark .gas-table th {
    background: #182235 !important;
    color: #f8fafc !important;
}
html.theme-dark .works-table td,
html.theme-dark .water-table td,
html.theme-dark .gas-table td {
    border-bottom-color: #263449 !important;
    color: #e5e7eb !important;
}
html.theme-dark .works-table td:nth-child(2),
html.theme-dark #schedule,
html.theme-dark .mygroup-schedule .time {
    color: #f87171 !important;
}
html.theme-dark .works-telegram-box,
html.theme-dark .water-empty,
html.theme-dark .gas-empty,
html.theme-dark .planned-light-empty,
html.theme-dark .utility-tags span,
html.theme-dark .dnipro-utility-items div,
html.theme-dark .water-mini-item,
html.theme-dark .gas-mini-item,
html.theme-dark .mygroup-schedule,
html.theme-dark .live-status-countdown {
    background: #182235 !important;
    border-color: #263449 !important;
    color: #e5e7eb !important;
}
html.theme-dark .water-hero-card,
html.theme-dark .water-mini-widget,
html.theme-dark .utility-alert-water,
html.theme-dark .water-card-hot summary {
    background: linear-gradient(135deg, #0f2b46, #111827) !important;
}
html.theme-dark .gas-hero-card,
html.theme-dark .gas-mini-widget,
html.theme-dark .gas-card-hot summary {
    background: linear-gradient(135deg, #32170b, #111827) !important;
}
html.theme-dark .planned-light-hero,
html.theme-dark .planned-light-alert-section,
html.theme-dark .planned-light-card summary {
    background: linear-gradient(135deg, #33250c, #111827) !important;
}
html.theme-dark .water-pill,
html.theme-dark .works-badge {
    background: #0f2b46 !important;
    color: #bae6fd !important;
    border-color: #1d4ed8 !important;
}
html.theme-dark .gas-pill,
html.theme-dark .utility-tags-gas span {
    background: #32170b !important;
    color: #fed7aa !important;
    border-color: #9a3412 !important;
}
html.theme-dark .planned-light-pill,
html.theme-dark .planned-light-badge.planned {
    background: #33250c !important;
    color: #fde68a !important;
    border-color: #b45309 !important;
}
html.theme-dark .planned-light-badge.emergency {
    background: #3b1114 !important;
    color: #fecaca !important;
}
html.theme-dark .live-active {
    background: #33250c !important;
    border-color: #92400e !important;
}
html.theme-dark .live-active .live-status-badge {
    background: #451a03 !important;
    color: #fde68a !important;
}
html.theme-dark .live-waiting,
html.theme-dark .live-none {
    background: #0f2f1d !important;
    border-color: #166534 !important;
}
html.theme-dark .live-waiting .live-status-badge,
html.theme-dark .live-none .live-status-badge {
    background: #14532d !important;
    color: #bbf7d0 !important;
}
html.theme-dark .live-unknown {
    background: #182235 !important;
    border-color: #334155 !important;
}
html.theme-dark .live-unknown .live-status-badge {
    background: #263449 !important;
    color: #cbd5e1 !important;
}
html.theme-dark .bottom-ad-img {
    background: #182235 !important;
}
html.theme-dark .bottom-ad-price b {
    color: #f87171 !important;
}
html.theme-dark .bottom-ad-price s {
    color: #94a3b8 !important;
}
html.theme-dark .social-footer {
    border-top-color: #263449 !important;
}
html.theme-dark a:not(.queue-button):not(.smart-nav-link):not(.smart-nav-brand):not(.smart-nav-mygroup):not(.smart-nav-city):not(.bottom-ad-card):not(.dnipro-utility-btn):not(.water-main-btn):not(.water-telegram-btn):not(.gas-main-btn):not(.planned-light-main-btn):not(.works-action-btn):not(.works-telegram-btn) {
    color: #93c5fd;
}

/* ===== DARK THEME TECHNICAL PAGES READABILITY FIX ===== */
html.theme-dark .main-content,
html.theme-dark .main-content > div,
html.theme-dark .main-content > section,
html.theme-dark .main-content > article,
html.theme-dark .article-card,
html.theme-dark .telegram-cta,
html.theme-dark .source-box,
html.theme-dark .note-box,
html.theme-dark .faq-block details {
    color: #e5e7eb !important;
    opacity: 1 !important;
}

html.theme-dark .article-card,
html.theme-dark .main-content > div[style*="line-height"],
html.theme-dark .source-box,
html.theme-dark .faq-block details {
    background: #111827 !important;
    border-color: #263449 !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.28) !important;
}

html.theme-dark .telegram-cta {
    background: linear-gradient(135deg, #10223f, #111827) !important;
    border: 1px solid #263449 !important;
    color: #e5e7eb !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.28) !important;
}

html.theme-dark .note-box {
    background: #33250c !important;
    border-color: #b45309 !important;
    color: #fde68a !important;
}

html.theme-dark .source-box {
    background: #182235 !important;
}

html.theme-dark .article-card h1,
html.theme-dark .article-card h2,
html.theme-dark .article-card h3,
html.theme-dark .article-card h4,
html.theme-dark .main-content h1,
html.theme-dark .main-content h2,
html.theme-dark .main-content h3,
html.theme-dark .telegram-cta h2,
html.theme-dark .faq-block summary,
html.theme-dark .source-list h2,
html.theme-dark .source-list h3 {
    color: #f8fafc !important;
    opacity: 1 !important;
}

html.theme-dark .article-card p,
html.theme-dark .article-card li,
html.theme-dark .article-card span,
html.theme-dark .article-card div,
html.theme-dark .main-content p,
html.theme-dark .main-content li,
html.theme-dark .main-content span,
html.theme-dark .main-content div,
html.theme-dark .telegram-cta p,
html.theme-dark .source-box p,
html.theme-dark .source-box li,
html.theme-dark .faq-block p,
html.theme-dark .updated-note,
html.theme-dark .small-source,
html.theme-dark .breadcrumbs {
    color: #e5e7eb !important;
    opacity: 1 !important;
}

html.theme-dark .intro-text,
html.theme-dark .region-subheader,
html.theme-dark .footer-info,
html.theme-dark .support-block,
html.theme-dark .support-block p {
    color: #cbd5e1 !important;
    opacity: 1 !important;
}

html.theme-dark .steps-list li {
    background: #0f2b46 !important;
    border-left-color: #60a5fa !important;
    color: #e5e7eb !important;
    opacity: 1 !important;
}

html.theme-dark .steps-list li::before {
    background: #2563eb !important;
    color: #ffffff !important;
}

html.theme-dark .update-badge {
    background: #10223f !important;
    color: #bfdbfe !important;
    border-color: #60a5fa !important;
    opacity: 1 !important;
}

html.theme-dark .city-block {
    border-top-color: #263449 !important;
}

html.theme-dark .small-group-link {
    background: #10223f !important;
    color: #dbeafe !important;
    border-color: #60a5fa !important;
}

html.theme-dark .small-group-link:hover {
    background: #2563eb !important;
    color: #ffffff !important;
}

html.theme-dark .telegram-button,
html.theme-dark a.telegram-button {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
    opacity: 1 !important;
}

html.theme-dark .language-switch a[style*="background:#fff"],
html.theme-dark .language-switch a[style*="background: #fff"] {
    background: #182235 !important;
    color: #e5e7eb !important;
    border-color: #334155 !important;
}

html.theme-dark .language-switch a[style*="background:#2563eb"],
html.theme-dark .language-switch a[style*="background: #2563eb"] {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
}

html.theme-dark .main-content a:not(.queue-button):not(.telegram-button):not(.small-group-link):not(.bottom-ad-card) {
    color: #93c5fd !important;
    opacity: 1 !important;
}

html.theme-dark .main-content hr,
html.theme-dark .article-card hr {
    border-color: #263449 !important;
}

/* ===== DTEK official address checker ===== */
.dtek-address-checker {
    margin: 22px 0 26px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid #bfdbfe;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 65%);
    box-shadow: 0 16px 42px rgba(37, 99, 235, .12);
}
.dtek-checker-head { margin-bottom: 16px; }
.dtek-checker-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.dtek-address-checker h2 { margin: 10px 0 8px; color: #0f172a; }
.dtek-address-checker p { color: #475569; line-height: 1.5; }
.dtek-address-form {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr .8fr auto;
    gap: 12px;
    align-items: end;
}
.dtek-address-form label { display: grid; gap: 6px; font-weight: 900; color: #0f172a; }
.dtek-address-form label span { font-size: 13px; }
.dtek-address-form input {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #fff;
    padding: 10px 12px;
    font-size: 16px;
    outline: none;
}
.dtek-address-form input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37, 99, 235, .15); }
.dtek-address-form button {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    padding: 10px 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}
.dtek-address-form button:hover { opacity: .94; }
.dtek-checker-result { margin-top: 16px; }
.dtek-loading,
.dtek-address-warning {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
    font-weight: 800;
}
.dtek-result-card,
.dtek-mini-card,
.dtek-reference-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 15px;
    text-align: left;
}
.dtek-result-card { margin-bottom: 12px; }
.dtek-result-top { display: flex; align-items: center; gap: 9px; font-size: 18px; color: #0f172a; }
.dtek-address-line { margin: 10px 0 5px; font-weight: 900; color: #0f172a !important; }
.dtek-status-message { margin: 0 0 6px; font-weight: 800; color: #334155 !important; }
.dtek-time-line { margin: 6px 0 0; color: #0f172a !important; font-weight: 800; }
.dtek-muted { margin: 7px 0 0; font-size: 13px; color: #64748b !important; }
.dtek-result-card.is-ok { background: #f0fdf4; border-color: #bbf7d0; }
.dtek-result-card.is-emergency { background: #fef2f2; border-color: #fecaca; }
.dtek-result-card.is-planned { background: #fffbeb; border-color: #fde68a; }
.dtek-result-card.is-unknown { background: #f8fafc; border-color: #e2e8f0; }
.dtek-result-grid { display: grid; grid-template-columns: .9fr 1.4fr; gap: 12px; }
.dtek-mini-card span,
.dtek-reference-card summary { color: #64748b; font-size: 13px; font-weight: 900; }
.dtek-mini-card strong,
.dtek-reference-card strong { display: block; margin-top: 5px; color: #0f172a; font-size: 18px; }
.dtek-reference-card summary { cursor: pointer; color: #1d4ed8; }
.dtek-reference-card p { margin: 9px 0; font-size: 14px; }
.dtek-official-link { margin-top: 12px; font-size: 13px; }
.dtek-official-link a { color: #1d4ed8; font-weight: 900; }
.dtek-reference-notice {
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
    text-align: left;
    font-size: 14px;
    line-height: 1.45;
}
html.theme-dark .dtek-address-checker {
    background: linear-gradient(135deg, #10223f 0%, #111827 70%) !important;
    border-color: #334155 !important;
}
html.theme-dark .dtek-address-checker h2,
html.theme-dark .dtek-address-form label,
html.theme-dark .dtek-result-top,
html.theme-dark .dtek-address-line,
html.theme-dark .dtek-time-line,
html.theme-dark .dtek-mini-card strong,
html.theme-dark .dtek-reference-card strong { color: #f8fafc !important; }
html.theme-dark .dtek-address-checker p,
html.theme-dark .dtek-status-message,
html.theme-dark .dtek-muted { color: #cbd5e1 !important; }
html.theme-dark .dtek-address-form input,
html.theme-dark .dtek-result-card,
html.theme-dark .dtek-mini-card,
html.theme-dark .dtek-reference-card { background: #182235 !important; border-color: #334155 !important; color: #f8fafc !important; }
html.theme-dark .dtek-reference-notice { background: #33250c !important; border-color: #b45309 !important; color: #fde68a !important; }
@media (max-width: 860px) {
    .dtek-address-form { grid-template-columns: 1fr; }
    .dtek-address-form button { width: 100%; }
    .dtek-result-grid { grid-template-columns: 1fr; }
    .dtek-address-checker { padding: 17px; border-radius: 20px; }
}

/* ===== DTEK address autocomplete ===== */
.dtek-suggest-field {
    position: relative;
}
.dtek-suggest-box {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 30;
    max-height: 280px;
    overflow: auto;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
    padding: 7px;
}
.dtek-suggest-box[hidden] {
    display: none !important;
}
.dtek-suggest-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #0f172a;
    padding: 10px 11px;
    text-align: left;
    cursor: pointer;
    font: inherit;
}
.dtek-suggest-item:hover,
.dtek-suggest-item:focus {
    background: #eff6ff;
    outline: none;
}
.dtek-suggest-item strong {
    font-size: 14px;
    line-height: 1.25;
}
.dtek-suggest-item span {
    flex: 0 0 auto;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}
.dtek-suggest-item.is-house {
    justify-content: flex-start;
}
.dtek-suggest-empty {
    padding: 10px 11px;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}
html.theme-dark .dtek-suggest-box {
    background: #182235 !important;
    border-color: #334155 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .35) !important;
}
html.theme-dark .dtek-suggest-item {
    color: #f8fafc !important;
}
html.theme-dark .dtek-suggest-item:hover,
html.theme-dark .dtek-suggest-item:focus {
    background: #10223f !important;
}
html.theme-dark .dtek-suggest-item span,
html.theme-dark .dtek-suggest-empty {
    color: #cbd5e1 !important;
}
@media (max-width: 860px) {
    .dtek-suggest-box {
        max-height: 240px;
    }
    .dtek-suggest-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
    .dtek-suggest-item span {
        white-space: normal;
    }
}
