/**
 * EPT Comparatore Luce v11 FINAL
 * CSS moderno e responsive
 */

/* === COLORI BRAND === */
:root {
    --ept-green-primary: #10b981;
    --ept-green-dark: #059669;
    --ept-green-light: #34d399;
    --ept-green-bg: #d1fae5;
    --ept-gray-50: #f9fafb;
    --ept-gray-100: #f3f4f6;
    --ept-gray-200: #e5e7eb;
    --ept-gray-300: #d1d5db;
    --ept-gray-600: #4b5563;
    --ept-gray-700: #374151;
    --ept-gray-900: #111827;
}

/* === RESET === */
.ept-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ept-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: var(--ept-gray-900);
}

/* === FORM SECTION === */
.ept-form-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 32px;
}

.ept-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--ept-gray-900);
    margin-bottom: 32px;
    text-align: center;
}

/* === FILTRI === */
.ept-filters-row-single {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.ept-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ept-filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ept-gray-700);
    font-size: 14px;
}

.ept-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--ept-gray-200);
    border-radius: 8px;
    font-size: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.ept-select:focus {
    outline: none;
    border-color: var(--ept-green-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* === CONSUMPTION BOX === */
.ept-consumption-box {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
    border: 3px solid var(--ept-green-primary);
}

.ept-box-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--ept-gray-100);
}

.ept-segment-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.ept-segment-toggle > label:first-child {
    font-weight: 600;
    color: var(--ept-gray-700);
    font-size: 14px;
    margin-bottom: 0;
}

.ept-toggle-buttons-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ept-segment-label {
    font-weight: 600;
    font-size: 16px;
    color: var(--ept-green-primary);
    min-width: 100px;
}

.ept-toggle-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0;
    padding: 16px;
    background: white;
    border-radius: 12px;
}

.ept-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.ept-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ept-slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ept-gray-300);
    transition: .3s;
    border-radius: 26px;
}

.ept-slider-toggle:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.ept-switch input:checked + .ept-slider-toggle {
    background-color: var(--ept-green-primary);
}

.ept-switch input:checked + .ept-slider-toggle:before {
    transform: translateX(24px);
}

.ept-toggle-label {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    color: var(--ept-gray-700);
}

/* === SUBSECTIONS === */
.ept-subsection {
    margin-bottom: 24px;
}

.ept-subsection h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ept-gray-900);
    margin-bottom: 16px;
}

/* === INPUT GROUPS === */
.ept-input-group {
    margin-bottom: 20px;
}

.ept-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ept-gray-700);
    font-size: 14px;
}

.ept-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--ept-gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
}

.ept-input:focus {
    outline: none;
    border-color: var(--ept-green-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.ept-input-group small {
    display: block;
    margin-top: 6px;
    color: var(--ept-gray-600);
    font-size: 13px;
}

/* === SLIDER PERSONE === */
/* === SLIDER PERSONE - FIX ALLINEAMENTO === */
.ept-persons-selector {
    position: relative;
    padding: 0 10px;
    margin-bottom: 12px;
}

.ept-persons-selector label {
    display: block;
    margin-bottom: 16px;
}

.ept-slider-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--ept-green-primary) 0%, var(--ept-green-light) 100%);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.ept-slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--ept-green-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ept-slider-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--ept-green-primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ept-persons-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 10px;
    width: 100%;
}

.ept-persons-labels span {
    font-size: 13px;
    color: var(--ept-gray-600);
    font-weight: 500;
    flex: 1;
}

/* ✅ Allineamento manuale preciso */
.ept-persons-labels span:nth-child(1) { 
    text-align: left; 
    margin-left: -5px; 
}

.ept-persons-labels span:nth-child(2) { 
    text-align: center; 
    margin-left: -8px; 
}

.ept-persons-labels span:nth-child(3) { 
    text-align: center; 
    margin-left: 0; 
}

.ept-persons-labels span:nth-child(4) { 
    text-align: center; 
    margin-left: 0; 
}

.ept-persons-labels span:nth-child(5) { 
    text-align: center; 
    margin-right: -8px; 
}

.ept-persons-labels span:nth-child(6) { 
    text-align: right; 
    margin-right: -5px; 
}

.ept-persons-value {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
    font-size: 18px;
    color: var(--ept-green-dark);
}

/* === APPLIANCES GRID === */
.ept-appliances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ept-appliance {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border: 2px solid var(--ept-gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.ept-appliance:hover {
    border-color: var(--ept-green-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.ept-appliance.active {
    border-color: var(--ept-green-primary);
    background: var(--ept-green-bg);
}

.ept-appliance img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 10px;
}

.ept-appliance span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--ept-gray-700);
}

.ept-appliance.active span {
    color: var(--ept-green-dark);
    font-weight: 600;
}

/* === AUTO ELETTRICA === */
.ept-ev-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    align-items: start;
}

.ept-ev-icon {
    width: 100%;
}

.ept-ev-input-box {
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--ept-gray-200);
}

.ept-ev-input-box label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ept-gray-700);
}

/* === CONSUMPTION DISPLAY === */
.ept-consumption-display {
    background: linear-gradient(135deg, var(--ept-green-primary) 0%, var(--ept-green-dark) 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    margin-top: 24px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.ept-consumption-display span {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-top: 8px;
}

/* === CTA BUTTON === */
.ept-cta-button {
    width: 100%;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--ept-green-primary), var(--ept-green-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ept-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.ept-cta-button:active {
    transform: translateY(0);
}

.ept-cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* === LOADING === */
.ept-loading {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.ept-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid var(--ept-gray-100);
    border-top: 4px solid var(--ept-green-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ept-loading p {
    font-size: 16px;
    color: var(--ept-gray-600);
}

/* === ERROR === */
.ept-error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.ept-error-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #991b1b;
}

.ept-error-icon {
    font-size: 24px;
}

/* === RESULTS === */
.ept-results-container {
    margin-top: 32px;
}

.ept-results-header {
    text-align: center;
    margin-bottom: 32px;
}

.ept-results-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ept-gray-900);
    margin-bottom: 12px;
}

.ept-params-summary {
    font-size: 15px;
    color: var(--ept-gray-600);
}

/* === OFFERS TABLE === */
.ept-offers-table {
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.ept-table-header {
    display: none; /* ✅ NASCOSTO come richiesto */
}

.ept-table-body {
    padding: 0;
}

/* === OFFER ROW === */
.ept-offer-row {
    border-bottom: 1px solid var(--ept-gray-200);
    position: relative;
    transition: background 0.2s;
}

.ept-offer-row:hover {
    background: var(--ept-gray-50);
}

.ept-offer-row:last-child {
    border-bottom: none;
}

.ept-best-offer {
    background: linear-gradient(to right, var(--ept-green-bg), #ffffff);
}

.ept-best-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.ept-offer-main {
    display: grid;
    grid-template-columns: 120px 1fr auto; /* Logo | Info (espande) | Azioni */
    gap: 24px;
    padding: 24px;
    align-items: center;
}

.ept-best-offer .ept-offer-main {
    padding-top: 52px;
}

/* === COLUMNS === */
.ept-col-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ept-logo {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

.ept-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ept-green-primary) 0%, var(--ept-green-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.ept-col-name {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0; /* Fix overflow */
}

/* ✅ LAYOUT INLINE: Nome + Prezzo sulla stessa riga */
.ept-offer-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--ept-gray-900);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ept-price-inline {
    font-size: 18px;
    font-weight: 700;
    color: var(--ept-green-primary);
    background: var(--ept-green-bg);
    padding: 4px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

/* ✅ RIGA METADATI: Tipo | Anno | Mese - INLINE */
.ept-offer-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    flex-wrap: wrap;
}

.ept-price-model {
    display: inline-block;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
}

.ept-offer-code {
    font-size: 12px;
    color: var(--ept-gray-600);
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.ept-price-combined {
    color: var(--ept-green-primary);
    font-weight: 700;
}

.ept-price-anno {
    color: var(--ept-green-primary);
    font-weight: 700;
}

.ept-price-mese {
    color: var(--ept-gray-600);
}

.ept-offer-meta {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.ept-info-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    cursor: help;
    color: #6b7280;
    vertical-align: middle;
}

.ept-info-icon:hover {
    color: var(--ept-green-primary);
}

.ept-info-icon svg {
    vertical-align: middle;
}

.ept-tooltip {
    position: fixed;
    background: var(--ept-gray-900);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 300px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

@media (max-width: 768px) {
    .ept-tooltip {
        max-width: 90vw;
        font-size: 14px;
        padding: 14px 18px;
    }
}

.ept-col-price {
    text-align: center;
}

.ept-price-main {
    font-size: 16px;
    font-weight: 700;
    color: var(--ept-gray-900);
}

.ept-price-detail {
    font-size: 12px;
    color: var(--ept-gray-600);
    margin-top: 4px;
}

.ept-col-total {
    text-align: center;
}

.ept-total-year {
    font-size: 20px;
    font-weight: 700;
    color: var(--ept-green-primary);
}

.ept-total-month {
    font-size: 13px;
    color: var(--ept-gray-600);
    margin-top: 4px;
}

.ept-saving {
    font-size: 12px;
    color: #dc2626;
    margin-top: 4px;
    font-weight: 500;
}

.ept-col-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ept-btn-details {
    padding: 10px 18px;
    background: white;
    border: 2px solid var(--ept-green-primary);
    color: var(--ept-green-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.ept-btn-details:hover {
    background: var(--ept-green-primary);
    color: white;
}

.ept-btn-cta {
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--ept-green-primary), var(--ept-green-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.ept-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* === OFFER DETAILS === */
.ept-offer-details {
    padding: 20px;
    background: var(--ept-gray-50);
    border-top: 1px solid var(--ept-gray-200);
}

.ept-breakdown h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ept-gray-900);
    margin-bottom: 16px;
}

.ept-breakdown-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ept-breakdown-table thead {
    background: var(--ept-gray-100);
}

.ept-breakdown-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    color: var(--ept-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ept-breakdown-table td {
    padding: 12px 16px;
    border-top: 1px solid var(--ept-gray-200);
    font-size: 14px;
}

.ept-breakdown-table .text-right {
    text-align: right;
}

.ept-breakdown-iva {
    background: #fef3c7;
}

.ept-breakdown-total {
    border-top: 2px solid var(--ept-green-primary);
    background: #ecfdf5;
}

.ept-breakdown-total td {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-size: 16px;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ept-offer-row {
    animation: fadeIn 0.3s ease-out;
}

.ept-offer-row:nth-child(1) { animation-delay: 0.05s; }
.ept-offer-row:nth-child(2) { animation-delay: 0.1s; }
.ept-offer-row:nth-child(3) { animation-delay: 0.15s; }
.ept-offer-row:nth-child(4) { animation-delay: 0.2s; }
.ept-offer-row:nth-child(5) { animation-delay: 0.25s; }

/* === ACCESSIBILITY === */
.ept-container *:focus-visible {
    outline: 2px solid var(--ept-green-primary);
    outline-offset: 2px;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .ept-container {
        padding: 12px;
    }
    
    .ept-form-section {
        padding: 20px;
    }
    
    .ept-title {
        font-size: 24px;
    }
    
    .ept-filters-row-single {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ept-box-header {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    /* ✅ NASCONDI label "Tipologia utenza" su mobile */
    .ept-segment-toggle > label:first-child {
        display: none;
    }
    
    /* ✅ Layout compatto per i toggle */
    .ept-segment-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: var(--ept-gray-50);
        border-radius: 12px;
    }
    
    .ept-toggle-buttons-group {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .ept-segment-label {
        font-size: 15px;
        font-weight: 600;
        color: var(--ept-green-primary);
        min-width: auto;
    }
    
    .ept-toggle-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: var(--ept-gray-50);
        border-radius: 12px;
    }
    
    .ept-toggle-label {
        font-size: 15px;
        font-weight: 600;
        text-align: center;
    }
    
   .ept-persons-selector {
        padding: 0 16px;
        margin-bottom: 16px;
    }
    
    .ept-persons-selector label {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .ept-slider-range {
        width: 100%;
        margin: 0;
    }
    
   .ept-persons-labels {
        display: flex;
        justify-content: space-between;
        padding: 0;
        margin: 12px 0 0 0;
        width: 100%;
    }
    
    .ept-persons-labels span {
        font-size: 12px;
        text-align: center;
        flex: 1;
        color: var(--ept-gray-600);
    }
    
    .ept-persons-labels span:first-child {
        text-align: left;
        padding-left: 0;
    }
    
    .ept-persons-labels span:last-child {
        text-align: right;
        padding-right: 0;
    }
    
    .ept-persons-value {
        text-align: center;
        margin-top: 12px;
        font-weight: 600;
        font-size: 18px;
        color: var(--ept-green-dark);
    }
    
    .ept-appliances-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .ept-appliance {
        padding: 14px;
    }
    
    .ept-appliance img {
        width: 48px;
        height: 48px;
    }
    
    .ept-appliance span {
        font-size: 13px;
    }
    
    .ept-ev-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ept-ev-icon {
        width: 100%;
    }
    
    .ept-consumption-display {
        font-size: 16px;
    }
    
    .ept-consumption-display span {
        font-size: 28px;
    }
    
    /* ✅ MOBILE: Layout verticale centrato */
    .ept-offer-main {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
        text-align: center;
    }
    
    .ept-col-logo {
        justify-content: center;
    }
    
    .ept-col-name {
        order: 0;
        align-items: center;
    }
    
    .ept-offer-name {
        flex-direction: column;
        gap: 8px;
        font-size: 18px;
        text-align: center;
    }
    
    .ept-price-inline {
        font-size: 16px;
    }
    
    .ept-offer-meta-row {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .ept-col-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .ept-btn-details,
    .ept-btn-cta {
        width: 100%;
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .ept-best-badge {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
    }
    
    .ept-best-offer .ept-offer-main {
        padding-top: 20px;
    }
    
    .ept-info-icon {
        font-size: 18px;
    }
    
    .ept-tooltip {
        max-width: 300px;
        left: auto !important;
        transform: none;
        bottom: auto;
    }
}

@media (max-width: 480px) {
    .ept-title {
        font-size: 20px;
    }
    
    .ept-consumption-display {
        font-size: 14px;
    }
    
    .ept-consumption-display span {
        font-size: 24px;
    }
}