/* Globales Styling */
body {
    background-color: #dce3e8; /* Etwas dunkler als das ursprüngliche Hellblau */
    color: #003366;           /* Enzian-Blau als Hauptfarbe */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

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

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

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

/* 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 #003366;
    border-radius: 5px;
    background-color: #ffffff;
    color: #003366;
    width: 200px;
}

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

.search-box button:hover {
    background-color: #002244; /* Etwas dunkler beim Hover */
}

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

/* Einzelne Song-Box */
.song-box {
    border: 1px solid #003366;
    border-radius: 8px;
    padding: 20px;
    background-color: #f0f4f8; /* Leicht dunkleres Weiß / helles Grau */
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 51, 102, 0.1);
    transition: box-shadow 0.3s ease;
    
    /* Schmaler und zentriert */
    margin: 0 auto;
    max-width: 1800px;
    width: calc(100% - 55px);  /* Stellt sicher, dass rundherum ein Rand bleibt */
}

.song-box:hover {
    box-shadow: 0 4px 8px rgba(0, 51, 102, 0.2); /* Dezenter verstärkter Schatten beim Hover */
}

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

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

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

.title {
    font-size: 1.2rem;
    font-style: italic;
    color: #00509e;
}

.date {
    font-size: 0.9rem;
    color: #336699;
    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: #f0f4f8; /* Gleicher Hintergrund wie die Song-Box */
    border: 1px solid #003366;
    border-radius: 8px;
    color: #003366;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #003366;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 51, 102, 0.2);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #c0c8d0; /* Etwas dunklerer Footer-Hintergrund */
    color: #003366;
    font-size: 1rem;
    border-top: 1px solid #003366;
    box-shadow: 0 -2px 4px rgba(0, 51, 102, 0.1);
}
