body {
    font-family: "Montserrat", sans-serif;
    background-color: #0d0d10;
    color: #f5f5f5;
}

h1, h2, h3 {
    font-family: "Montserrat", sans-serif;
    color: #f5f5f5;
}
h1 {
    font-size: clamp(1rem, 7vw, 2.5rem);
}
h2 {
    font-size: clamp(1.2rem, 5vw, 2rem);
}
h3 {
    font-size: clamp(1rem, 5vw, 1.7rem);
}


p, button, input, a, select {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.9rem, 3vw, 1rem);
    color: #f5f5f5;
}
label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem; /* Etwas kleiner & kompakter wie bei modernen Apps */
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    outline: none;
    border-radius: 10px;
    padding: 12px;
    transition: all 0.2s ease;
}
    input:focus, select:focus {
        border-color: #496ab4;
        background-color: rgba(255, 255, 255, 0.06);
        box-shadow: 0 0 0 4px rgba(73, 106, 180, 0.15);
    }
    input:hover, select:hover {
        border-color: #496ab4;
        background-color: rgba(255, 255, 255, 0.06);
        box-shadow: 0 0 0 4px rgba(73, 106, 180, 0.15);
    }

.roomcode-input {
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;

}

option, optgroup {
    background-color: #1A1A1E;
}

button {
    background: linear-gradient(135deg, #496ab4 0%, #3b5694 100%);
    box-shadow: 0 6px 20px rgba(73, 106, 180, 0.45);
    border: none;
    border-radius: 10px;
    padding: 16px;
    color: #f5f5f5;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s all ease;
}
    button:hover {
        transform: translateY(-2px);
   
    }

.secondary-btn {
    background: transparent;
    color: #9ca3af;
    box-shadow: none;
    padding: 8px;
    font-weight: 500;
}
    .secondary-btn:hover {
        box-shadow:none;
        border:none;
        color: #ffffff;
        background: transparent;
        transform: none;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

.retoure-btn {
    background: transparent;
    color: #9ca3af;
    box-shadow: none;
    padding: 0px;
    margin-bottom:20px;
    font-weight: 500;
    align-self:flex-start;
}
    .retoure-btn:hover {
        box-shadow: none;
        border: none;
        color: #ffffff;
        background: transparent;
        transform: none;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

.socialmedia-btn {
    background-color: transparent;
    background: none;
    box-shadow: none;
    padding: 5px;
    margin: 0;
    border-radius: 8px;
    transition: 0.2s all ease;
}
    .socialmedia-btn img {
        object-position: center;
        height: clamp(25px, 4vw, 32px);
        width: clamp(25px, 4vw, 32px);
        opacity: 0.8;
        transition: opacity 0.2s;
    }
.room-code {
    position: relative;
    margin: clamp(5px, 2vw, 30px);
    align-self: flex-end;
    width: clamp(100px, 10vw, 110px);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}


.divider {
    width: clamp(120px, 20vw, 150px);
    height: 2px;
    background-color: #1A1A1E
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.animate-pop {
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

    25% {
        transform: rotate(-1deg)
    }

    50% {
        transform: rotate(1deg)
    }

    75% {
        transform: rotate(-1deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

/* Blazor Standard-Validierung bleibt unberührt */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}
.invalid {
    outline: 1px solid #e50000;
}
.validation-message {
    color: #e50000;
}
