/* Override class for right positioning */
.soundtrack-right-btn {
    position: fixed !important;
    top: 50% !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
}

/* Soundtrack player controls */
.soundtrack-control {
    position: fixed !important;
    top: 50% !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
    background: rgba(0, 0, 0, 0.5);
    color: #eedbf1;
    border: 2px solid rgba(238, 219, 241, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.soundtrack-control:hover {
    background: rgba(238, 219, 241, 0.3);
    transform: scale(1.1);
}

.soundtrack-control:active {
    transform: scale(0.95);
}

/* Autoplay blocked notice */
.autoplay-notice {
    position: fixed;
    bottom: 20px;
    left: 70px;
    background: rgba(0, 0, 0, 0.7);
    color: #eedbf1;
    border: 1px solid rgba(238, 219, 241, 0.5);
    border-radius: 8px;
    padding: 15px;
    z-index: 1000;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.autoplay-notice p {
    margin-bottom: 10px;
}

.autoplay-notice button {
    background: rgba(238, 219, 241, 0.3);
    color: #eedbf1;
    border: 1px solid rgba(238, 219, 241, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.autoplay-notice button:hover {
    background: rgba(238, 219, 241, 0.5);
}
