/* Song Actions Modal */
.song-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.song-modal-content {
    background: linear-gradient(135deg, var(--color-primary-deep) 0%, var(--color-primary-violet) 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px var(--shadow-purple-30);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.song-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.song-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.song-modal-title {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-align: center;
}

.song-modal-info {
    margin-bottom: 25px;
}

.song-modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.song-modal-row:last-child {
    border-bottom: none;
}

.song-modal-label {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

.song-modal-artist-link {
    color: var(--color-purple);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.song-modal-artist-link:hover {
    color: var(--text-primary);
}

.song-modal-duration {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
}

.song-modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.song-modal-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--color-purple);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.song-modal-btn:hover:not(:disabled) {
    background: var(--overlay-purple-245-90);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-purple-40);
}

.song-modal-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.song-modal-btn svg {
    flex-shrink: 0;
}

.song-modal-like-btn.liked {
    background: linear-gradient(135deg, var(--color-purple) 0%, #D946EF 100%);
}

.song-modal-like-btn.liked:hover {
    background: linear-gradient(135deg, var(--color-purple) 0%, #C736DD 100%);
    opacity: 0.9;
}

.song-modal-btn.processing {
    opacity: 0.7;
    pointer-events: none;
}

/* Disabled state styling */
.song-modal-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.song-modal-btn:disabled svg {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .song-modal-content {
        padding: 25px 20px;
        max-width: 90%;
    }
    
    .song-modal-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .song-modal-actions {
        flex-direction: column;
    }
    
    .song-modal-btn {
        width: 100%;
    }
}

