/**
 * Simple SoundCloud Modal Styles
 */
.soundcloud-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}

.soundcloud-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
}

.soundcloud-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 0;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.soundcloud-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    padding: 0;
    width: 50px;
    height: 50px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.soundcloud-modal-close:hover {
    color: #000;
}

.soundcloud-modal-player {
    min-height: 166px;
}

.soundcloud-modal-player iframe {
    display: block;
}

/* Add pointer cursor to clickable items */
.soundcloud-modal-trigger {
    cursor: pointer;
}