body {

    margin: 0;
    padding: 0;
    background-size: cover;
    color: #fff;
    text-align: center;

}




.hmdip {
    min-width: 70vw;
    max-width: 90%;
    margin: 20px auto;
    margin-bottom: 80px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-family: Arial, sans-serif;
    line-height: 1.6;

}

h1,
h2,
p,
label {
    color: #333;
    /* Dunkelgrau für besseren Kontrast */
    font-weight: 700;
    /* Fett für bessere Lesbarkeit */
}

h1,
h2,
p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    /* Leichter Schatten */
}

.bg-white {
    background: linear-gradient(145deg, #ffffff, #e8e8e8);

    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.list-disc {
    padding-left: 20px;

}

.list-disc li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #2d3748;
    transition: background-color 0.3s ease, color 0.3s ease;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;

}

.game-name {
    color: #1a202c;
    font-weight: bold;
    font-size: 18px;

}

.game-time {
    color: #3182ce;
    font-style: italic;
}

.game-details {
    flex: 1;
    /* Textbereich nimmt den restlichen Platz ein */
    font-size: 16px;
    /* Schriftgröße */
    line-height: 1.4;
    /* Zeilenhöhe für Lesbarkeit */
}

.game-image {
    width: 150px;
    /* Einheitliche Breite für Bilder */
    height: auto;
    /* Automatische Höhe für Seitenverhältnis */
    border-radius: 5px;
    /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Leichter Schatten */
}

.list-disc li:hover {
    background-color: #f1f5f9;
    color: #1a202c;
    border-radius: 5px;
}



.hmdip label {
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
    color: #000000;

}

.hmdip input {
    width: 300px;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
    float: none;
}

.hmdip button {
    background-color: #224cf5;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hmdip button:hover {
    background-color: #275ab9;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 8px;

}

.status-indicator.online {
    background-color: #28a745;

}

.status-indicator.offline {
    background-color: #dc3545;

}

.picker-container {
    text-align: center;
    margin: 50px auto;
}

.game-display {
    width: 600px;
    height: 400px;
    margin: 20px auto;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.random-button {
    background-color: #224cf5;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.random-button:hover {
    background-color: #275ab9;
    transform: scale(1.05);
}

.game-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

.game-display img {
    width: 300px;
    height: 200px;
}

.spin {
    animation: spinEffect 1s linear infinite;
}

@keyframes spinEffect {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

/* Stil für die Statusmeldung */
.status-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.status-message.success {
    background-color: #e6f4ea;
    /* Leichtes Grün */
    color: #2e7d32;
    /* Dunkler Grünton */
}

.status-message.error {
    background-color: #fdecea;
    /* Leichtes Rot */
    color: #d32f2f;
    /* Dunkler Rottton */
}

/* Tabelle-Design */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

table th,
table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

table thead th {
    background-color: #f4f4f4;
    /* Hellgrauer Hintergrund */
    color: #333;
    /* Dunkelgrauer Text */
    font-weight: bold;
    text-transform: uppercase;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
    /* Wechselnde Zeilenfarbe */
}

table tbody tr:hover {
    background-color: #f1f1f1;
    /* Hover-Effekt */
}

table td {
    color: #555;
    /* Normaler Text */
}

table th {
    color: #222;
    /* Header-Text */
    font-weight: 700;
}

/* Überschrift für die Tabelle */
.table-title {
    font-size: 24px;
    font-weight: bold;
    color: #444;
    margin-bottom: 10px;
    text-align: center;
}

/* Allgemeines Styling */



.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    /* Weißer Hintergrund */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}