/* ===== SINGLE LYRIC POST LAYOUT ===== */

/* Wrapper */
.slb-single-wrapper {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 30px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 900px;
}

/* Header row: centered title + album on right */
.slb-header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

/* Lyric post title centered */
.slb-title {
    font-style: italic;
    color: inherit;
    margin: 0 auto;
    text-align: center;
}

/* Album label pinned to right, 12px */
.slb-album-label {
    position: absolute;
    right: 0;
    top: 0;
    font-style: italic;
    font-size: 12px;
    white-space: nowrap;
    text-align: right;
}

/* Album link style */
.slb-album-label .slb-album-link {
    color: inherit;
    text-decoration: none;
}

/* Album hover color */
.slb-album-link:hover {
    color: #009771;
    text-decoration: underline;
}

/* Author line */
.slb-author {
    font-weight: bold;
    margin-bottom: 12px;
}

/* Post content */
.slb-post-content {
    margin-top: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: #000;
}

/* Buttons row */
.slb-button-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Download PDF Button */
.slb-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

/* Print Button (also Play button) */
.slb-print-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #f4f4f4;
    color: #000;
    border: 2px solid #000;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Button hover */
.slb-dl-btn:hover,
.slb-print-btn:hover {
    background: #000;
    color: #fff;
}

/* Icon sizing */
.slb-dl-btn .dashicons,
.slb-print-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Mobile: stack buttons */
@media (max-width: 600px) {
    .slb-button-row {
        flex-direction: column;
        align-items: center;
    }
}

/* Hide theme title */
.single-lyric_post .entry-title,
.single-lyric_post .page-title {
    display: none;sc
}

/* === Audio player layout === */
.slb-audio-player {
    margin: 10px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Time text */
.slb-audio-time {
    font-family: monospace;
    font-size: 14px;
}

/* Progress bar wrapper */
.slb-audio-progress {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

/* Progress bar */
.slb-audio-progress-bar {
    height: 100%;
    width: 0;
    background: #000;
    transition: width 0.1s linear;
}

.slb-time-separator {
    margin: 0 2px;
}

/* Small screens (single layout tweaks) */
@media (max-width: 480px) {
    .slb-audio-player {
        gap: 6px;
    }

    .slb-header-row {
        flex-direction: column;
        align-items: center;
    }

    .slb-album-label {
        text-align: center;
        white-space: normal;
        position: static;
        margin-top: 4px;
    }
}

/* ===== ALBUM ARCHIVE PAGE (lyric_album taxonomy) ===== */

.slb-archive-wrapper {
    padding: 40px 15px;
}

.slb-archive-inner {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    padding: 30px;
}

/* Album title inside the container, centered */
.slb-archive-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    font-style: italic;
    text-align: center;
    color: #000000 !important; /* DARK TITLE */
}

/* Layout: main list + sidebar */
.slb-archive-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Main list area */
.slb-archive-main {
    flex: 1 1 auto;
}

/* Sidebar area (search + album list) */
.slb-archive-sidebar {
    width: 260px;
    flex: 0 0 auto;
    font-style: italic; /* all sidebar text italic */
}

/* Search form */
.slb-archive-search-form {
    margin: 0 0 20px 0;
}

/* Search input – 30px, italic placeholder */
.slb-search-input {
    width: 100%;
    height: 30px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

.slb-search-input::placeholder {
    font-style: italic;
}

/* === Album Lists widget === */
.slb-album-list-widget {
    margin-top: 15px;
}

.slb-album-list-title {
    font-size: 15px;
    margin-bottom: 8px;
    font-style: italic;
}

/* Album list UL */
.slb-album-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Album list item */
.slb-album-list-item {
    margin-bottom: 4px;
}

/* Album list links */
.slb-album-list-link {
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    font-weight: normal;
    font-style: italic;
}

/* Album list link hover */
.slb-album-list-link:hover {
    color: #009771;
    text-decoration: underline;
}

/* List of lyric posts (main area) */
.slb-archive-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each item in list */
.slb-archive-item {
    margin-bottom: 8px;
}

/* Link style */
.slb-archive-link {
    text-decoration: none;
    color: #000000;
}

/* Archive link hover color */
.slb-archive-link:hover {
    color: #009771;
    text-decoration: underline;
}

/* Empty message */
.slb-archive-empty {
    text-align: center;
    margin: 20px 0 0;
}

/* Pagination */
.slb-archive-pagination {
    margin-top: 20px;
    text-align: center;
}

.slb-archive-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
}

.slb-archive-pagination .page-numbers li {
    list-style: none;
}

.slb-archive-pagination .page-numbers a,
.slb-archive-pagination .page-numbers span {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 13px;
    text-decoration: none;
    color: #000000;
    background: #ffffff;
}

.slb-archive-pagination .page-numbers .current {
    border-color: #009771;
    background: #009771;
    color: #ffffff;
}

.slb-archive-pagination .page-numbers a:hover {
    border-color: #009771;
    color: #009771;
}

/* Lyric list titles (both archives) */
.slb-archive-link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;   /* NEW SIZE */
}

/* Mobile layout: sidebar below list */
@media (max-width: 768px) {
    .slb-archive-layout {
        flex-direction: column;
    }

    .slb-archive-sidebar {
        width: 100%;
        margin-top: 20px;
    }
}