/*
* Wielka Tercja
*
 * footer.css
 *
 * Copyright (c) 2025 Kamil Machowski
 *
 * Ten projekt jest objęty licencją  CC BY-ND 4.0
 *
 */

.status-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    background-color: var(--header-bg-light);
    color: var(--header-text-light);
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    justify-content: space-between;
}

.score-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.score-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 43px;
    min-height: 43px;
    width: 43px;
    height: 43px;
    border-radius: 5px;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

.correct-answers {
    background-color: var(--score-correct-bg-light);
}

.wrong-answers {
    background-color: var(--score-wrong-bg-light);
}

.settings-button {
    background-color: var(--control-button-bg-light);
    color: white;
    border: none;
    cursor: pointer;
    min-width: 43px;
    min-height: 43px;
    width: 43px;
    height: 43px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.settings-button .theme-icon,
.settings-button svg {
    width: 24px;
    height: 24px;
    stroke: var(--footer-icon-light-color);
    transition: stroke 0.3s ease;
}

.theme-toggle .theme-icon.dark {
    display: none;
}

body.dark-theme .theme-toggle .theme-icon.dark {
    display: block;
}

body.dark-theme .theme-toggle .theme-icon.light {
    display: none;
}

.button-container-flex {
    display: flex;
    gap: 10px;
}

.settings-button:active {
        background-color: var(--control-button-active-light); /* Nowy kolor active */
        transform: scale(1.1);
    }