.container-report {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: sans-serif;
    position: relative;
}

/* Kontajner musí mať relative, aby sa tooltip pozicioval voči nemu */
.svg-report-container {
    position: relative;
}

/* Samotná bublina */
.svg-tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-family: sans-serif;
    display: none;
    /* Skrytá v základe */
    pointer-events: none;
    /* Aby myš prechádzala cezeň */
    transform: translate(-50%, -100%);
    /* Vycentrovanie nad bodom */
    margin-top: -10px;
    /* Odsadenie nad textom */
    z-index: 10;
}

.row {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: var(--radius-card);
}

.inverse_row {
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: var(--radius-card);
    background-color: #1a85c8;
    color: #FFF;    
}

.inverse_row h2 {
    color: #fff;
}

.amount {
    color: #FF8C00;
    /* Tmavšia, skvele čitateľná oranžová pre samotnú sumu */
    font-size: 30px;
    /* Väčšie písmo ako ostatné prvky */
    font-weight: 800;
    /* Extra tučné písmo */
    margin-top: 5px;
    display: block;
}

.notice {
    font-size: 14px;
    opacity: 0.85;
}


.success-border {
    border-left: 6px solid green;
    padding-left: 25px;
}

.warning-border {
    border-left: 6px solid yellow;
    padding-left: 25px;
}

.alert-border {
    border-left: 6px solid red;
    padding-left: 25px;
}


/* Flexbox zaistí, že stĺpce ostanú vedľa seba VŽDY */
.row-two-columns {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.column {
    flex: 1;
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: var(--radius-card);
    text-align: center;
}

.svg-report-container {
    background-color: #ffffff;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: var(--radius-card);
    width: 100%;
    box-sizing: border-box;
    border-left: 3px solid #cbd5e0;
}

/* Responzivita: Na mobiloch (pod 600px) budú stĺpce pod sebou */
@media (max-width: 600px) {
    .row-two-columns {
        flex-direction: column;
    }
}