.container {
    max-width: 800px;
    margin: 100px auto;
    padding: 30px;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #ffffff;
    font-weight: bold;
}

h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

h3 {
    text-align: center;
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 30px;
}

.terms-content h2 {
    font-size: 1.2em;
    margin-top: 30px;
    margin-bottom: 10px;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
}

/* Textabschnitte */
.terms-content p {
    margin: 10px 0;
}

/* Links */
a {
    color: #2962FF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #0039CB;
}

/* Fehlermeldungen, Ladeoverlay etc. */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-overlay.hidden {
    display: none;
}

.loading-content {
    text-align: center;
    color: #ffffff;
    width: 80%;
    max-width: 400px;
}

.spinner {
    border: 8px solid #333333;
    border-top: 8px solid #2962FF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.progress-bar {
    width: 100%;
    background-color: #444444;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
    margin-top: 10px;
}

.progress {
    height: 100%;
    width: 0%;
    background-color: #2962FF;
    transition: width 0.5s ease;
}

.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #D32F2F;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 1001;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
}

.error-message.hidden {
    display: none;
}