/* Algemene stijl */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #202020; /* Donkere achtergrond */
    color: #e0e0e0; /* Zachte, lichte tekstkleur */
}

/* Dynamische achtergrond */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #1e90ff, #6a11cb, #ff6347);
    background-size: 200% 200%;
    animation: gradientAnimation 6s infinite ease-in-out;
    z-index: -1;
}

@keyframes gradientAnimation {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.container {
    position: relative;
    margin: 40px auto;
    max-width: 700px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    backdrop-filter: blur(15px);
}

h1, h2 {
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
}

/* Invoervelden en knoppen */
.container input,
.container textarea {
    width: calc(100% - 30px);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #444;
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.container input:focus,
.container textarea:focus {
    outline: none;
    border-color: #1e90ff;
    box-shadow: 0 0 10px #1e90ff;
}

.container button,
.container input[type="button"] {
    background: linear-gradient(90deg, #1e90ff, #6a11cb);
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.container button:hover,
.container input[type="button"]:hover {
    background: linear-gradient(90deg, #6a11cb, #1e90ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

button.disabled,
input[type="button"].disabled {
    background-color: #555;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Informatie en foutmeldingen */

.dj-info-container {
    display: flex;
    align-items: center; /* Zorgt ervoor dat de tekst en de afbeelding verticaal gecentreerd zijn */
    justify-content: space-between; /* Tekst links, afbeelding rechts */
    margin-bottom: 20px;
}

.dj-info {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dj-info img {
    display: block;
    max-width: 175px;
    margin: 10px auto;
    border-radius: 50%;
    border: 3px solid #6a11cb;
}

.dj-info p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
}

.message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.message.error {
    background: rgba(255, 0, 0, 0.3);
    color: #ff6666;
    box-shadow: 0 5px 10px rgba(255, 0, 0, 0.5);
}

.message.success {
    background: rgba(0, 255, 0, 0.3);
    color: #66ff66;
    box-shadow: 0 5px 10px rgba(0, 255, 0, 0.5);
}

/* Countdown en bannings */
.ban-message {
    border: 2px solid #ff0000;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    padding: 20px;
    font-size: 18px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.ban-message h3 {
    font-size: 22px;
    color: #ff2222;
    margin-bottom: 10px;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    color: #ffcc00;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Vooringevulde waarden (placeholder-stijl) */
.container input::placeholder,
.container textarea::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Zorg voor een subtiele, lichte placeholderkleur */
    font-style: italic; /* Eventueel om de placeholder te onderscheiden van normale tekst */
}

/* Tekstkleur in invoervelden */
.container input,
.container textarea {
    color: #ffffff; /* Maak de tekst helder wit voor een goed contrast */
    background: rgba(255, 255, 255, 0.1); /* Behoud de subtiele achtergrondkleur */
}

/* Focus-effect (kleur bij selectie van veld) */
.container input:focus,
.container textarea:focus {
    border-color: #00ffcc; /* Heldere kleur om selectie aan te duiden */
    box-shadow: 0 0 10px #00ffcc; /* Voeg een heldere focus-schaduw toe */
}
