
/* Rahnema Slides Styles */
.rahnema-slides {
    font-family: sans-serif;
    display: flex;
    height: 80vh;
    border: 1px solid #ccc;
}

.rahnema-slides-sidebar {
    width: 30%;
    overflow-y: auto;
    border-right: 1px solid #eee;
    background: #fafafa;
    display: flex;
    flex-direction: column;
}

.rahnema-slides-content {
    width: 70%;
    padding: 2em;
    min-height: 100%;
}

.rahnema-slides-tab-content {
    display: none;
    animation: fadeIn 0.2s;
}

.rahnema-slides-tab-content[style*="display:block"] {
    display: block;
}

.rahnema-slides-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1200/675;
}

.rahnema-slides-sidebar {
    scrollbar-width: thin;
    scrollbar-color: #bbb #fafafa;
}

.rahnema-slides-sidebar::-webkit-scrollbar {
    width: 8px;
}

.rahnema-slides-sidebar::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

.rahnema-slides-sidebar::-webkit-scrollbar-track {
    background: #fafafa;
}

.rahnema-slides-tab-btn {
    width: 100%;
    background: #F1F2F3;
    border: none;
    border-radius: 0;
    text-align: left;
    padding: 1em;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
    color: #54595F;
}

.rahnema-slides-tab-btn.active,
.rahnema-slides-tab-btn:hover {
    background: #BA8C40;
    color: #fff;
    border: none;
    border-radius: 0;
}

.rahnema-slides-content {
    min-height: 100%;
}

.rahnema-slides-tab-content {
    animation: fadeIn 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}