/*
 * Финальный стиль для сайта.
 * Современный, чистый интерфейс с акцентом на удобство и читаемость.
 */

/* ==================================
   Базовые стили
   ================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
}

.container {
    background-color: #ffffff;
    padding: 25px 35px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    box-sizing: border-box;
}

/* ==================================
   Заголовки
   ================================== */
h1, h2, h3 {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 25px;
}

h2 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #374151;
    text-align: left;
}

/* ==================================
   Формы и поля ввода
   ================================== */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
}

input[type="text"],
input[type="password"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
    outline: none;
}

input[type="number"]:focus {
    border-color: #10b981; /* акцент зелёным */
    box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.add-form {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.add-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 18px; /* уже есть, оставляем */
    align-items: flex-start; /* чтобы кнопка не прилипала к полям */
}
.add-form .form-group {
    flex: 1 1 220px;
    margin-bottom: 18px; /* добавляем отступ снизу */
}

.add-form button {
    flex: 1 1 100%;
    margin-top: 8px; /* чтобы кнопка немного отступала от полей */
}

.inline-select {
    font-size: 1em;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

/* ==================================
   Кнопки и ссылки
   ================================== */
a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2563eb;
}

.btn,
button,
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    color: #ffffff;
    background-color: #3b82f6;
}

.btn:hover,
button:hover,
.btn-primary:hover {
    background-color: #2563eb;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-danger,
.delete-btn {
    background-color: #ef4444;
}

.btn-danger:hover,
.delete-btn:hover {
    background-color: #dc2626;
}

.update-btn {
    background-color: #facc15;
    color: #1f2937;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.update-btn:hover {
    background-color: #eab308;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Меню ссылок */
.menu-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.menu-links a {
    font-size: 1.1em;
    font-weight: 500;
}

/* ==================================
   Сообщения и уведомления
   ================================== */
.error-message,
.error,
.notification,
.success {
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.error-message,
.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.notification,
.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* ==================================
   Списки и таблицы
   ================================== */
ul.house-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.house-list li {
    background-color: #ffffff;
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.house-list li:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}

th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 14px;
    text-align: left;
}

td {
    padding: 14px;
    border-top: 1px solid #e5e7eb;
}

tr:nth-child(even) td {
    background-color: #fafafa;
}

tr:hover td {
    background-color: #f1f5f9;
}

/* ==================================
   Карточки и кнопки ресурсов
   ================================== */
.meter-card {
    background-color: #f9fafb;
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.meter-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.resource-button {
    flex: 0 1 auto;
    min-width: 140px;
    max-width: 200px;
    padding: 10px 14px;
    background-color: #3b82f6;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95em;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.resource-button:hover {
    background-color: #2563eb;
    transform: scale(1.03);
}

/* Дома как кнопки */
.house-list a {
    display: block;
    padding: 14px 18px;
    background-color: #3b82f6;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.house-list a:hover {
    background-color: #2563eb;
    transform: scale(1.02);
}

/* ==================================
   Адаптивность
   ================================== */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .button-group {
        justify-content: center;
    }

    .resource-button {
        flex: 1 1 calc(50% - 12px); /* 2 кнопки в ряд */
        font-size: 0.9em;
        min-width: unset;
    }

    .house-list a {
        font-size: 0.95em;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    input,
    select,
    button {
        font-size: 14px;
        padding: 10px;
    }

    .resource-button {
        flex: 1 1 100%; /* по одной в ряд на очень маленьком экране */
    }

    .btn,
    button {
        width: 100%;
    }
}


/* --- Карточки домов на главной мастера --- */
.house-cards {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    padding: 0;
    margin-top: 20px;
}

.house-cards li {
    margin: 0;
}

.house-card {
    display: block;
    padding: 16px 18px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 1em;
    color: #1e3a8a;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.house-card:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- Адаптив для телефонов --- */
@media (max-width: 480px) {
    .house-cards {
        grid-template-columns: 1fr; /* по одной карточке в ряд */
        gap: 12px;
    }

    .house-card {
        font-size: 0.95em;
        padding: 14px 12px;
    }
}

.meter-card form button {
    margin-top: 10px; /* расстояние сверху */
}

.export-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.export-button:hover {
    background-color: #45a049;
}
