/* Globales Styling für den Dark Mode */
body {
    background-color: #001f3f;  /* Tiefes Dunkelblau */
    color: #cceeff;            /* Helle, freundliche Schriftfarbe */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container für zentrierten Inhalt (optional) */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

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

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #cceeff;
}

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

.date-picker input,
.search-box input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #00509e;
    border-radius: 5px;
    background-color: #01233f;  /* Etwas heller als der Body-Hintergrund */
    color: #cceeff;
    width: 200px;
}

.search-box button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #00509e;  /* Akzentfarbe */
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: #003366;  /* Dunklerer Farbton beim Hover */
}

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

/* Einzelne Song-Box */
.song-box {
    border: 1px solid #00509e;
    border-radius: 8px;
    padding: 20px;
    background-color: #01233f;  /* Leicht abgesetztes Dunkelblau */
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 80, 158, 0.3);
    transition: box-shadow 0.3s ease;
    
    /* Schmal und zentriert */
    margin: 0 auto;
    max-width: 900px;
    width: calc(100% - 40px);  /* Gewährleistet stets einen Rand */
}

.song-box:hover {
    box-shadow: 0 4px 8px rgba(0, 80, 158, 0.5);
}

/* Zeitangabe */
.time {
    font-size: 1.2rem;
    color: #66aaff;
    margin-right: 20px;
    font-weight: bold;
}

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

.artist {
    font-weight: bold;
    font-size: 1.4rem;
    color: #cceeff;
    margin-bottom: 5px;
}

.title {
    font-size: 1.2rem;
    font-style: italic;
    color: #66aaff;
}

.date {
    font-size: 0.9rem;
    color: #99bbcc;
    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: #01233f;
    border: 1px solid #00509e;
    border-radius: 8px;
    color: #cceeff;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #00509e;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 80, 158, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #001f3f;
    color: #cceeff;
    font-size: 1rem;
    border-top: 1px solid #00509e;
    box-shadow: 0 -2px 4px rgba(0, 80, 158, 0.3);
}
