/* Algemene stijl */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
    color: #333;
}

/* Dynamische achtergrond */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2575fc, #6a11cb, #1e90ff, #ff6347);
    background-size: 400% 400%;
    animation: gradientAnimation 5s ease infinite;
    z-index: -1;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    position: relative;
    margin: 25px auto;
    max-width: 650px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
}

h1 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.container input,
.container textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.container button,
.container input[type="button"] {
    background: linear-gradient(90deg, #2575fc, #6a11cb);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s ease;
}

.container button:hover,
.container input[type="button"]:hover {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
}

button.disabled,
input[type="button"].disabled {
    background-color: #a0a0a0; /* Donkergrijs */
    cursor: not-allowed;
    opacity: 0.5;
}

.dj-info {
    text-align: left;
    background: rgba(255, 255, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #fff;
}

.dj-info img {
    display: block;
    max-width: 150px;
    margin: 10px auto;
    margin-left: 25px;
    border-radius: 50%;
}

.dj-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #fff;
}

.dj-info-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dj-details {
    flex: 1; /* Zorgt ervoor dat de details de resterende ruimte innemen */
}

.dj-details p {
    margin: 5px 0; /* Zorgt voor wat ruimte tussen de regels */
    font-size: 18px;
}

/* Foutmeldingen */
.message {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

.message.error {
    background: rgba(255, 0, 0, 0.2);
    color: red;
}

.message.success {
    background: rgba(0, 255, 0, 0.2);
    color: green;
}

.ban-message {
    border: 3px solid red;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.ban-message h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #d10000;
}

