/* General Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-size:12px;
}

/* Title */
h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6f61;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Search Bar */
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#search {
    flex-grow: 1;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #252525;
    color: #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#search:focus {
    border-color: #ff6f61;
    outline: none;
    box-shadow: 0 0 5px #ff6f61;
}

button {
    padding: 12px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #ff6f61;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #e85a4f;
    transform: scale(1.05);
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #252525;
    border-radius: 5px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #333;
}

th {
    background-color: #333;
    color: #ff6f61;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

td {
    color: #e0e0e0;
}

tr:hover {
    background-color: #2d2d2d;
    transition: background-color 0.3s ease;
}

/* Audio Player */
audio {
    width: 300px;
    border-radius: 5px;
    outline: none;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 20px;
    line-height: 35px;
}

.pagination a {
    padding: 6px 10px;
    margin: 0 3px;
    background-color: #333;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pagination a:hover {
    background-color: #ff6f61;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 600px) {
    th, td {
        font-size: 0.8rem;
    }

    button {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.5rem;
    }
}
