/* Globales Styling für den Dark Mode */
body {
    background-color: #2B0A0B;  /* Sehr dunkles Weinrot */
    color: #F2D1D1;            /* Helle, weinrote Schriftfarbe */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container für zentrierten Inhalt (optional) */
.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: #F2D1D1;
}

/* 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 #5C1F2A;
    border-radius: 5px;
    background-color: #3A1213;  /* Noch dunkleres Weinrot */
    color: #F2D1D1;
    width: 200px;
}

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

.search-box button:hover {
    background-color: #48111F;  /* Noch dunkler beim Hover */
}

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

/* Einzelne Song-Box */
.song-box {
    border: 1px solid #5C1F2A;
    border-radius: 8px;
    padding: 20px;
    background-color: #3A1213;  /* Sehr dunkles Weinrot */
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(92,31,42, 0.3);
    transition: box-shadow 0.3s ease;
    
    /* Schmal und zentriert */
    margin: 0 auto;
    max-width: 1800px;
    width: calc(100% - 40px);
}

.song-box:hover {
    box-shadow: 0 4px 8px rgba(92,31,42, 0.5);
}

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

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

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

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

.date {
    font-size: 0.9rem;
    color: #A55C5C;
    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: #3A1213;
    border: 1px solid #5C1F2A;
    border-radius: 8px;
    color: #F2D1D1;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #48111F;
    color: #F2D1D1;
    box-shadow: 0 2px 4px rgba(92,31,42, 0.5);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #2B0A0B;
    color: #F2D1D1;
    font-size: 1rem;
    border-top: 1px solid #5C1F2A;
    box-shadow: 0 -2px 4px rgba(92,31,42, 0.3);
}
