/* Globales Styling - Dark Mode */
body {
    background-color: #121212; /* Tiefes Schwarzgrau */
    color: #e0e0e0; /* Helles Grau für Text */
    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: #bb86fc; /* Lila Highlight */
}

/* 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 #bb86fc;
    border-radius: 5px;
    background-color: #1f1f1f;
    color: #e0e0e0;
    width: 200px;
}

.search-box button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #bb86fc;
    color: #121212;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: #9a67ea;
}

/* Songliste */
.song-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

/* Einzelne Song-Box */
.song-box {
    border: 1px solid #bb86fc;
    border-radius: 8px;
    padding: 20px;
    background-color: #1f1f1f;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(187, 134, 252, 0.1);
    transition: box-shadow 0.3s ease;
    
    /* Schmaler und zentriert */
    margin: 0 auto;
    max-width: 1800px;
    width: calc(100% - 55px);
}

.song-box:hover {
    box-shadow: 0 4px 8px rgba(187, 134, 252, 0.2);
}

/* Zeitangabe */
.time {
    font-size: 1.2rem;
    color: #03dac6;
    margin-right: 20px;
    font-weight: bold;
}

/* Song-Details */
.song-details {
    flex: 1;
}

.artist {
    font-weight: bold;
    font-size: 1.4rem;
    color: #bb86fc;
    margin-bottom: 5px;
}

.title {
    font-size: 1.2rem;
    font-style: italic;
    color: #03dac6;
}

.date {
    font-size: 0.9rem;
    color: #818181;
    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: #1f1f1f;
    border: 1px solid #bb86fc;
    border-radius: 8px;
    color: #bb86fc;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #bb86fc;
    color: #121212;
    box-shadow: 0 2px 4px rgba(187, 134, 252, 0.2);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #181818;
    color: #e0e0e0;
    font-size: 1rem;
    border-top: 1px solid #bb86fc;
    box-shadow: 0 -2px 4px rgba(187, 134, 252, 0.1);
}
