/* Song Header Styles */

.song-header-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.darkmode .song-header-card {
    background: #2d3748;
    border-color: #4a5568;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Title Section */
.song-title-section {
    margin-bottom: 0;
}

.song-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 2;
}

.darkmode .song-title {
    color: #f1f5f9;
}

.song-artist {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.darkmode .song-artist {
    color: #94a3b8;
}

/* Verification Section */
.verification-section {}

.darkmode .verification-section {
    border-top-color: #4a5568;
}

.verification-badge-wrapper {
    display: flex;
    align-items: center;
}

.verification-badge {
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
    font-weight: 600;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.verification-badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.verification-badge.bg-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.25);
}

/* Verification Actions */
.verification-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.verify-btn {
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-width: 2px;
    transition: all 0.3s ease;
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.verify-btn.active {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
    color: #fff;
}

.btn-outline-danger {
    border-width: 2px;
    font-weight: 600;
}

.btn-outline-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

/* Edit Button */
.btn-edit {
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

.btn-edit i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .song-header-card {
        padding: 1.5rem;
    }

    .song-title {
        font-size: 1.75rem;
    }

    .song-artist {
        font-size: 1rem;
    }

    .verification-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .btn-edit {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .song-header-card {
        padding: 1.25rem;
    }

    .song-title {
        font-size: 1.5rem;
    }

    .verification-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.65rem;
    }

    .verify-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.875rem;
    }
}