/* styles.css */
body {
    font-family: 'SUIT', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 0.75rem;
}

.player-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    max-width: 500px;
    width: 100%;
}

video, audio {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.playlist {
    margin-top: 20px;
}

.playlist ul {
    list-style: none;
    padding: 0;
}

.playlist li {
    background: #e3e3e3;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.playlist li:hover {
    background: #d1d1d1;
}

.playlist li.active {
    background: #007BFF;
    color: #fff;
}
