/* Grundlegende Einstellungen */
body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* Vollbild-Popup */
.affirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 9999;
}

.affirmation-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 100, 0, 0.5);
}

.affirmation-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 0 20px;
}

.affirmation-text {
    font-family: 'Balloon', sans-serif;
    font-size: 2em;
}

/* Fortschrittsbalken */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #fff;
    width: 0%;
    transition: width 0.1s linear;
}

/* Navigationsbuttons */
.affirmation-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.affirmation-controls button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
}

.affirmation-controls button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
}

/* Responsives Design */
@media screen and (max-width: 600px) {
    .affirmation-text {
        font-size: 1.5em;
    }
}
