/* title.css – typografie, barvy, textové prvky */

.dashboard-tile,
.title {
    background-color: #0f1e2f;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

    height: 100%;
    display: flex;
    flex-direction: column;

    color: #ff4b00; /* ← TADY to vracíme zpět */
}

.dashboard-title {
    text-align: center;
    font-size: 2rem;
    margin: 1rem 0;
    color: #fff;
}

/* Nadpis a ikony v dlaždici */
.title-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.title h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

/* Hlavní hodnota – číslo */
.title .value {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

/* Barvy podle významu */
.title .value.positive {
    color: #00c853; /* zelená */
}

.title .value.negative {
    color: #ff4b00; /* oranžová */
}

/* Popis dole */
.title .subtext {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: auto;
}

/* Pro blikající hodnoty (live data) */
.title.live .value {
    animation: pulse 2s infinite ease-in-out;
}

/* Odkazy */
.title-link {
    text-decoration: none;
}

.title-link:hover,
.title-link:visited,
.title-link:focus,
.title-link:active {
    text-decoration: none;
}

/* Styl pro konkrétní dlaždici „savings“ */
.title.savings .value {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
}
