
.spotify-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    height: 80vh;
    background: #1db95400; 
    border-radius: 8px;
    display: none;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
}

.spotify-modal-header {
    padding: 15px 20px;
    background: #191414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: move;
}

.spotify-modal-header .app-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
}

.spotify-close {
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.2s;
}

.spotify-close:hover {
    color: #df0f0f;
}

.spotify-modal-body {
    padding: 20px;
    background: #121212;
    height: calc(100% - 60px);
    overflow: hidden;
}

.spotify-player {
    width: 100%;
    height: 100%;
    border: none;
}