.csap-player-container {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.csap-player-controls {
    margin-bottom: 10px;
}

.csap-player-btn {
    padding: 8px 16px;
    margin-right: 5px;
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
}

.csap-player-btn:hover {
    background-color: #005a87;
}

.csap-player-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#csap-progress {
    margin-top: 10px;
    height: 8px;
    background-color: #ddd;
    border-radius: 4px;
    overflow: hidden;
}

#csap-progress-bar {
    height: 100%;
    background-color: #0073aa;
    width: 0%;
    transition: width 0.1s ease;
}
