﻿/* wwwroot/css/masterclass-builder.css */
.builder-container {
    display: flex;
    height: calc(100vh - 80px); /* Past zich aan onder je navigatiebalk */
    width: 100%;
    background-color: #f8f9fa;
    overflow: hidden;
}

.builder-sidebar {
    width: 300px;
    background-color: #ffffff;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.builder-sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background-color: #f1f3f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-list-item {
    padding: 1rem;
    border-bottom: 1px solid #f1f3f5;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

    .slide-list-item:hover {
        background-color: #e9ecef;
    }

    .slide-list-item.active {
        background-color: #e3faf6;
        border-left: 4px solid #20c997;
    }

.slide-thumbnail-placeholder {
    height: 120px;
    background-color: #f8f9fa;
    border: 1px dashed #ced4da;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #6c757d;
    overflow: hidden;
    padding: 0.5rem;
}

.builder-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.builder-toolbar {
    height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    justify-content: space-between;
}

.builder-editor-area {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

/* Zorg dat de Radzen editor de volledige hoogte pakt */
.rz-html-editor {
    height: 100% !important;
    min-height: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
