.progress-control {
    display: flex;
    align-items: center;
    padding: 5px;
    width: 200px;
}
.play-button {
    background-color: #007bff !important;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-right: 10px;
    cursor: pointer;
    width: 50px !important;
    border-radius: 5px !important;
}
.progress-bar {
    flex-grow: 1;
    height: 10px;
    background: #ddd;
    position: relative;
    cursor: pointer;
    width: 100px;
}
.progress-fill {
    height: 100%;
    width: 0;
    background: #007bff;
    position: absolute;
}