﻿        /* Свитч (toggle) для подписок на уведомления.
           Перебиваем глобальное .modal-content--toast button { width:100%; height:48px } */
        .modal-content--toast button.ls-list__toggle,
        .modal-content button.ls-list__toggle {
            position: relative;
            width: 44px !important;
            height: 24px !important;
            min-width: 44px !important;
            max-width: 44px;
            padding: 0;
            margin: 0;
            border: 0;
            border-radius: 999px;
            background: #d8dee5;
            cursor: pointer;
            transition: background 0.18s ease;
            box-shadow: none;
            flex-shrink: 0;
            display: inline-block;
            vertical-align: middle;
        }
        .modal-content button.ls-list__toggle::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 1px 3px rgba(0,0,0,0.18);
            transition: transform 0.18s ease;
        }
        .modal-content button.ls-list__toggle.is-on { background: var(--accent-info); }
        .modal-content button.ls-list__toggle.is-on::after { transform: translateX(20px); }
        .modal-content button.ls-list__toggle:disabled { opacity: 0.5; cursor: not-allowed; }
        .modal-content .ls-list__remove {
            width: 36px;
            height: 36px;
            min-width: 36px;
            padding: 0;
            margin: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 0;
            border-radius: 8px;
            color: #98a4b1;
            cursor: pointer;
            font-size: 0.95rem;
            transition: color 0.18s ease, background 0.18s ease;
            box-shadow: none;
        }
        .modal-content .ls-list__remove:hover {
            color: #d65160;
            background: #fff1f3;
        }
        .modal-content .ls-list__remove:focus-visible {
            outline: 2px solid rgba(44, 182, 125, 0.45);
            outline-offset: 2px;
        }

        .logout-button {
            padding: 8px 12px; /*  Можно изменить размер кнопки, если нужно */
            font-size: 0.9em; /*  Можно изменить размер шрифта, если нужно */
        }
        
        .notification-button{
            padding: 8px 12px; /*  Можно изменить размер кнопки, если нужно */
            font-size: 0.9em; /*  Можно изменить размер шрифта, если нужно */
        }
        
        .table-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            overflow-x: auto; /* Горизонтальный скролл для широких таблиц на мобильном */
            -webkit-overflow-scrolling: touch;
            margin-bottom: 20px;
        }
        
        .table {
            width: 100%;
            margin-bottom: 0;
            color: #212529;
        }
        
        .table thead th {
            background-color: #f8f9fa;
            border-bottom: 2px solid #dee2e6;
            font-weight: 600;
            text-transform: uppercase; /*  Делаем заголовки заглавными */
            font-size: 0.9em;          /*  Уменьшаем размер шрифта */
            padding: 0.75rem;
            text-align: left;
        }
        
        .table tbody td {
            padding: 0.75rem;
            border-bottom: 1px solid #dee2e6;
        }
        
        .table tbody tr:nth-of-type(odd) {
            background-color: #f9f9f9;
        }
        
        .table tbody tr:hover {
            background-color: #e9ecef;
        }
        
        .btn-download {
            background: var(--brand-grad);
            color: #fff;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: filter 0.18s ease, transform 0.12s ease;
            font-size: 0.9em;
            box-shadow: 0 2px 6px rgba(44, 182, 125, 0.20);
        }

        .btn-download:hover {
            background: var(--brand-grad-hover);
            color: #fff;
            transform: translateY(-1px);
        }
        
        .no-receipts {
            padding: 1rem;
            text-align: center;
            font-style: italic;
            color: #6c757d;
        }
        
        .back-button-container {
            text-align: center; /*  Центрируем кнопку */
        }
        
        .date-weather-info {
            /* margin-bottom: 5px; */
            font-size: 0.9em;
            color: var(--accent-info);
            margin: 10px;
            margin-right: 20px;
            text-align: left;
        }
        
        
        .meters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Адаптивное количество колонок */
            gap: 0.5rem;
            margin-top: 1rem;
            margin-bottom:1rem;
        }
        
        .meter-item {
            background-color: #fff;
            border-radius: 10px;
            padding: 0.75rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
            color: #333;
            border: none;
        }
        
        .meter-item:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .meter-item h3 {
            font-size: 1em;
            margin-bottom: 0.25rem;
            color: var(--accent-info);
        }
        
        .meter-item p {
            margin-bottom: 0.125rem;
        }
        
        .meter-item .label {
            font-weight: bold;
            font-size: 1em; /* Уменьшаем размер подписей */
            color: #666;
            margin-right: 0.25rem;
        }
        