/* style.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-logo img {
    border-radius: 50%;
}

.header-title h1 {
    margin: 0;
    font-size: 1.8em;
}

.header-stats {
    text-align: right;
}

.header-stats p {
    margin: 5px 0;
}

.filter-bar {
    background-color: #34495e;
    padding: 15px 0;
    margin-bottom: 20px;
}

.filter-bar form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px;
}

.filter-bar select, .filter-bar input[type="text"] {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.filter-bar button {
    padding: 8px 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.filter-bar button:hover {
    background-color: #2980b9;
}

.shows-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #3498db;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e6f7ff;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.pagination-controls {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
    text-align: right;
}

.pagination-controls select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content a {
    color: #3498db;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.dj-photo-container {
    margin: 0 auto 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.dj-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-links {
    margin-top: 20px;
}

.dj-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 8px 15px;
    background-color: #3498db;
    color: white;
    border-radius: 4px;
}

.dj-links a:hover {
    background-color: #2980b9;
    text-decoration: none;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .header-stats {
        text-align: center;
        margin-top: 10px;
    }
    
    .filter-bar form {
        flex-direction: column;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}
/* Add these styles to your existing CSS */
#audioPlayerContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.player-controls {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

#audioPlayer {
    flex: 1;
    min-width: 200px;
}

.player-info {
    min-width: 100px;
    text-align: center;
}

.player-progress {
    flex: 2;
    min-width: 300px;
}

.player-progress input[type="range"] {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
}

.player-progress input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
}

#closePlayer {
    padding: 5px 10px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#closePlayer:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .player-controls {
        flex-direction: column;
    }
    
    #audioPlayer, .player-progress {
        width: 100%;
    }
}
/* Pagination styles */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination-controls {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}

.pagination-button {
    padding: 5px 10px;
    border: 1px solid #3498db;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
}

.pagination-button:hover {
    background-color: #3498db;
    color: white;
}

.pagination-button.active {
    background-color: #3498db;
    color: white;
    font-weight: bold;
}

.pagination-button.disabled {
    color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.pagination-ellipsis {
    padding: 5px 10px;
}

.items-per-page {
    display: flex;
    align-items: center;
    gap: 10px;
}

.items-per-page select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .pagination-controls {
        justify-content: center;
    }
    
    .items-per-page {
        justify-content: center;
    }
}
.reset-button {
    padding: 8px 15px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.reset-button:hover {
    background-color: #c0392b;
}

/* Ensure the audio element is properly styled */
#audioPlayer {
    width: 100%;
    max-width: 300px;
    height: 40px;
    margin-right: 10px;
}
