/* Styles for the consolidated editing modal */
.edit-modal-sidebar {
    background-color: #f8f9fa;
    padding: 1.5rem 1rem;
    border-right: 1px solid #dee2e6;
    width: 280px; /* Fixed width for the sidebar */
    flex-shrink: 0;
}

.edit-modal-sidebar h6 {
    font-weight: 700;
    color: #495057;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}

/* Using Bootstrap's Nav Pills for the tab selectors */
.edit-modal-sidebar .nav-pills .nav-link {
    color: #343a40;
    font-weight: 500;
    text-align: left;
}

.edit-modal-sidebar .nav-pills .nav-link.active {
    background-color: #0d6efd;
    color: white;
}

.edit-modal-content {
    padding: 1.5rem 2rem;
    width: 100%;
    overflow-y: auto; /* Allow content to scroll */
}

/* Styling for the column selection tool */
.column-selector {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    border-radius: 0.25rem;
    background-color: #ffffff;
}