/* SFWA Reading List View - Main Layout Style Guide */

#sfwa-reading-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    font-family: sans-serif;
    box-sizing: border-box;
}

.rl-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #321866;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    box-sizing: border-box;
}

.rl-search-container {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 600px;
}

.rl-search-container input {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    width: 100%;
    color: #11161d;
    font-size: 0.95rem;
}

.rl-main-layout {
    display: grid;
    grid-template-columns: 360px 1fr 310px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.rl-col-left, .rl-col-center, .rl-col-right {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.rl-col-left {
    background: #f5f0e6;
    border: 1px solid #e2d8c5;
    padding: 20px;
}

.rl-col-center {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 25px;
}

.rl-col-right {
    background: #0b111a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
}

.rl-tabs {
    display: flex;
    border-bottom: 2px solid #321866;
    margin-bottom: 20px;
    gap: 4px;
}

.rl-tab-btn {
    padding: 12px 20px;
    border: none;
    background: none;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px 4px 0 0;
}

.rl-tab-btn:hover { 
    background: #f0ecf7; 
    color: #321866;
}

.rl-tab-btn.active { 
    background: #321866 !important; 
    color: #ffffff !important; 
}

.rl-tab-content {
    width: 100%;
    box-sizing: border-box;
}

.rl-card-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

#sfwa-personal-list-tab, 
#sfwa-reads-loved-tab, 
#sfwa-works-read-tab, 
#sfwa-reads-recd-tab { 
    display: none !important;
}

@media (max-width: 1024px) {
    .rl-main-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    .rl-col-left, .rl-col-center, .rl-col-right {
        width: 100% !important;
        position: static !important;
    }
    .rl-tabs {
        flex-direction: column !important;
        gap: 6px !important;
        border-bottom: none !important;
    }
    .rl-tab-btn {
        width: 100% !important;
        background: #f7fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 4px !important;
        text-align: left;
    }
    .rl-tab-btn.active {
        background: #321866 !important;
        color: #ffffff !important;
    }
}