/* Globales Styling – Dark Mode mit Neon-Blau */
body {
    background-color: #0a0a0f;  /* Tiefdunkler Hintergrund */
    color: #cdeeff;             /* Bläuliche, gut lesbare Schrift */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Optionaler zentraler Inhaltscontainer */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header-Bereich */
header {
    text-align: center;
    margin: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #00ffff;             /* Neon-Cyan für den Header-Titel */
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

/* Datumsauswahl & Suchfeld */
.date-picker,
.search-box {
    text-align: center;
    margin-bottom: 20px;
}

.date-picker input,
.search-box input {
    background-color: #111827;  /* Sehr dunkles Blaugrau */
    border: 1px solid #00aaff;  /* Neon-Blauer Rahmen */
    border-radius: 5px;
    color: #cdeeff;
    padding: 10px;
    font-size: 16px;
    width: 200px;
}

.search-box button {
    background-color: #00aaff;  /* Kräftiges Neon-Blau */
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    padding: 10px 15px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.2s ease, box-shadow 0.2s;
    box-shadow: 0 0 10px #00aaff;
}

.search-box button:hover {
    background-color: #0088cc;  /* Etwas dunkler beim Hover */
    box-shadow: 0 0 15px #00aaff;
}

/* Songliste */
.song-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

/* Einzelne Song-Box */
.song-box {
    background-color: #111827;  /* Dunkles Blau-Grau */
    border: 2px solid #00aaff;  /* Leuchtender blauer Rahmen */
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.4);
    transition: box-shadow 0.3s ease;

    margin: 0 auto;
    max-width: 1800px;
    width: calc(100% - 55px);
}

.song-box:hover {
    box-shadow: 0 0 16px rgba(0, 170, 255, 0.6);
}

/* Zeitangabe */
.time {
    font-size: 1.2rem;
    color: #00ccff;  /* Helleres Cyan */
    margin-right: 20px;
    font-weight: bold;
    text-shadow: 0 0 5px #00ccff;
}

/* Song-Details */
.song-details {
    flex: 1;
}

.artist {
    font-size: 1.4rem;
    font-weight: bold;
    color: #00ccff;
    margin-bottom: 5px;
    text-shadow: 0 0 5px #00ccff;
}

.title {
    font-size: 1.2rem;
    font-style: italic;
    color: #00aaff;
    text-shadow: 0 0 3px #00aaff;
}

.date {
    font-size: 0.9rem;
    color: #66d9ff;
    margin-top: 5px;
}

/* Paginierung */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
    background-color: #111827;
    border: 1px solid #00aaff;
    border-radius: 8px;
    color: #cdeeff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background-color: #00aaff;
    color: #ffffff;
    box-shadow: 0 0 12px #00aaff;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #0a0a0f;
    color: #cdeeff;
    font-size: 1rem;
    border-top: 1px solid #00aaff;
    box-shadow: 0 -2px 10px rgba(0, 170, 255, 0.5);
}
