.ac-player-wrapper-bb7c3191 {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: sans-serif;
    color: #333;
}

.ac-controls-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ac-play-pause-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #0073e6;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.ac-play-pause-btn:hover {
    background: #005bb5;
}

.ac-progress-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ac-progress-bar {
    width: 100%;
    cursor: pointer;
}

.ac-time-display {
    font-size: 12px;
    color: #666;
    text-align: right;
}

.ac-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ac-switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-label {
    font-size: 14px;
    font-weight: bold;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.ac-label.active {
    opacity: 1;
    color: #0073e6;
}

/* Toggle Switch Styles */
.ac-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.ac-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ac-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.ac-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .ac-slider {
    background-color: #0073e6;
}

input:checked + .ac-slider:before {
    transform: translateX(26px);
}

.ac-slider.round {
    border-radius: 24px;
}

.ac-slider.round:before {
    border-radius: 50%;
}

.ac-volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ac-vol-icon {
    font-size: 18px;
}

.ac-volume-slider {
    width: 100px;
    cursor: pointer;
}