.songs-form-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a0f3a 0%, #0f0a1f 50%, #050308 100%);
    padding: 40px 20px;
}

.songs-card {
    background: linear-gradient(135deg, #2d1b69 0%, #1a103f 50%, #0f0a1f 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255,107,53,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}

.songs-card .card-body {
    padding: 2.5rem;
}

.songs-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.form-control {
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.25rem rgba(255,107,53,0.25);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

textarea.form-control {
    min-height: 120px;
}

.date-selects select {
    background-color: #fff;
    border: 2px solid #e0d5c1;
    border-radius: 12px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ff6b35' d='M8 10.5l4-4H4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
}

/* Specific widths for date selects */
.date-selects #Day {
    width: 100px;
}

.date-selects #Month {
    width: 160px;
}

.date-selects #Year {
    width: 120px;
}

.date-selects select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.25rem rgba(255,107,53,0.25);
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255,107,53,0.2);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff2d92 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,107,53,0.3);
    color: #fff;
}

.btn-outline-secondary {
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.btn-outline-secondary:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
}

.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Fix for dropdown menus */
.navbar {
    z-index: 1000;
}

.dropdown-menu {
    z-index: 1001;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .songs-card .card-body {
        padding: 1.5rem;
    }
    
    .date-selects {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .date-selects select {
        width: 100% !important;
    }
    
    /* Reset specific widths on mobile */
    .date-selects #Day,
    .date-selects #Month,
    .date-selects #Year {
        width: 100%;
    }

    .section-label {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .songs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
    }

    .song-card {
        padding: 24px 20px;
        min-height: 500px;
        gap: 24px;
    }

    .song-img {
        width: 180px;
        height: 180px;
    }

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

    .song-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 260px;
    }

    .song-actions a:last-child {
        grid-column: 1 / -1;
        max-width: 140px;
        margin: 0 auto;
    }

    .listen-btn {
        padding: 5px 10px;
        font-size: 0.85rem;
        min-width: 0;
        width: 100%;
        border-radius: 16px;
    }

    .listen-btn i {
        font-size: 0.9rem;
    }
}

/* Songs List styles */
.songs-container {
    background: linear-gradient(135deg, #1a0f3a 0%, #0f0a1f 50%, #050308 100%);
    padding: 40px 20px 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 380px));
    gap: 32px;
    max-width: 1400px;
    width: 100%;
    justify-content: center;
}

.song-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #2d1b69 0%, #1a103f 50%, #0f0a1f 100%);
    border-radius: 32px;
    box-shadow: 0 4px 32px rgba(255,107,53,0.20);
    padding: 28px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 520px;
    position: relative;
}

.song-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(255,107,53,0.3);
    background: linear-gradient(135deg, #3d2b79 0%, #2d1b69 50%, #1a103f 100%);
}

.song-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 24px;
    border: 3px solid #ff6b35;
    box-shadow: 0 2px 16px rgba(255,107,53,0.4);
    background: #fff;
}

.song-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    flex: 1;
}

.song-info {
    margin-bottom: 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.song-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffdca8;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.song-meta {
    font-size: 1.1rem;
    color: #e6e1d6;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.artist-link {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.artist-link:hover {
    color: #00d4aa;
}

.duration {
    color: #ff6b35;
    font-size: 0.95em;
}

.song-lyrics {
    font-size: 1rem;
    color: #e6e1d6;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.song-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    margin: 20px auto 0;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    min-width: 100px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(90deg, #ff6b35 0%, #ff2d92 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255,107,53,0.3);
    transition: all 0.2s ease;
    border: none;
    line-height: 1;
    text-align: center;
    height: 32px;
}

.listen-btn span {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.listen-btn.yt {
    background: #ff2e2e;
    color: #fff;
}

.listen-btn.yt:hover {
    background: #b80000;
    color: #fff;
}

.listen-btn.spotify {
    background: #1db954;
    color: #fff;
}

.listen-btn.spotify:hover {
    background: #12833a;
    color: #fff;
}

.listen-btn.apple {
    background: #000;
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
}

.listen-btn.apple:hover {
    background: #444;
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.5);
}

.listen-btn:hover {
    background: linear-gradient(90deg, #ff2d92 0%, #00d4aa 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,107,53,0.5);
    transform: translateY(-1px);
}

/* Mobile Responsive Styles */
@media (max-width: 1400px) {
    .songs-grid {
        grid-template-columns: repeat(2, minmax(300px, 380px));
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .section-label {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .songs-grid {
        grid-template-columns: minmax(280px, 400px);
        gap: 24px;
    }

    .song-card {
        padding: 24px 20px;
        min-height: 460px;
        gap: 0;
    }

    .song-img {
        width: 180px;
        height: 180px;
    }

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

    .song-meta {
        font-size: 1rem;
        margin: 0 0 12px 0;
    }

    .song-lyrics {
        font-size: 0.95rem;
    }

    .song-actions {
        margin: 16px auto 0;
    }

    .listen-btn {
        flex: 1;
        min-width: 110px;
        max-width: 130px;
        padding: 5px 16px;
        font-size: 0.85rem;
        border-radius: 16px;
        height: 28px;
    }
} 