/* assets/css/style.css */
:root {
    --primary-color: #5856d6;
    --secondary-color: #30344d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Search box styles */
.search-box {
    background-color: white;
    border: 1px solid #eee;
}

/* Lyrics display */
.lyrics-content {
    max-height: 70vh;
    overflow-y: auto;
}

.lyrics-text {
    white-space: pre-wrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    background: none;
    border: none;
    color: #333;
}

.lyrics-sync-container {
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
}

.lyrics-line {
    margin-bottom: 8px;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lyrics-line:hover {
    background-color: #f8f9fa;
}

.lyrics-line.active {
    background-color: #e9ecef;
    font-weight: bold;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}
       
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Interpretation section */
.interpretation-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.interpretation-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.interpretation-header {
    margin-bottom: 0.5rem;
}

.interpretation-body {
    line-height: 1.6;
}

/* Card styles */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
    border: none;
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

/* Button styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4a49b0;
    border-color: #4a49b0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .lyrics-content {
        max-height: 40vh;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    .card {
        background-color: #1e1e1e;
        color: #e0e0e0;
    }

    .lyrics-text {
        color: #e0e0e0;
    }

    .search-box {
        background-color: #1e1e1e;
        border-color: #333;
    }

    .form-control {
        background-color: #2d2d2d;
        border-color: #444;
        color: #e0e0e0;
    }

    .form-control:focus {
        background-color: #2d2d2d;
        color: #e0e0e0;
    }

    .interpretation-item {
        border-color: #333;
    }
}


