﻿/* --- Mérőóra kártyák és lista --- */
.meter-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .meter-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }

/* Az ikonok kis doboza (listában és megtekintésnél) */
.meter-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* --- Típus választó gombok alapállapota --- */
.meter-type-btn {
    border: 2px solid transparent !important;
    background-color: #f8f9fa; /* Alapból semleges világosszürke */
    color: #6c757d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

    .meter-type-btn:hover {
        background-color: #e9ecef;
        transform: translateY(-2px);
    }

/* --- Típus-specifikus színek és AKTÍV állapotok --- */

/* Villany - Arany/Sárga */
.meter-bg-electricity {
    color: #856404;
    background-color: #fff3cd;
}

.btn-check:checked + .meter-bg-electricity {
    background-color: #fff9db !important;
    border-color: #fab005 !important;
    color: #e67700 !important;
    box-shadow: 0 4px 12px rgba(250, 176, 5, 0.3);
}

/* Gáz - Narancs */
.meter-bg-gas {
    color: #853e00;
    background-color: #ffe5d0;
}

.btn-check:checked + .meter-bg-gas {
    background-color: #fff4e6 !important;
    border-color: #fd7e14 !important;
    color: #d9480f !important;
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
}

/* Hidegvíz - Királykék */
.meter-bg-coldwater {
    color: #055160;
    background-color: #d1f7ff;
}

.btn-check:checked + .meter-bg-coldwater {
    background-color: #e7f5ff !important;
    border-color: #228be6 !important;
    color: #1864ab !important;
    box-shadow: 0 4px 12px rgba(34, 139, 230, 0.3);
}

/* Melegvíz - Piros */
.meter-bg-hotwater {
    color: #842029;
    background-color: #f8d7da;
}

.btn-check:checked + .meter-bg-hotwater {
    background-color: #fff5f5 !important;
    border-color: #fa5252 !important;
    color: #c92a2a !important;
    box-shadow: 0 4px 12px rgba(250, 82, 82, 0.3);
}

/* Egyéb - Lila */
.meter-bg-other {
    color: #2b1352;
    background-color: #e2d9f3;
}

.btn-check:checked + .meter-bg-other {
    background-color: #f3f0ff !important;
    border-color: #7950f2 !important;
    color: #5f3dc4 !important;
    box-shadow: 0 4px 12px rgba(121, 80, 242, 0.3);
}

/* --- Form Floating finomítás --- */
.form-floating > .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}


