.column-title{
    cursor: move;
}
details{
    box-shadow: 0px 0px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: white;
    padding: 10px 15px;
    margin: 10px auto;
    position: relative;
}
details summary{
    font-weight: bold;
    cursor: pointer;    
}
details summary:hover{
    color: #0073aa;
}
details summary::marker{
    color: #0073aa;
}
details summary::before{
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-color: bisque;
}
details summary:hover::before,
details[open] summary::before{
    background-color: #0073aa;
}

/* Tab Styles */
.bstaff-nav-tab-wrapper{
    margin-top: 20px;
    margin-bottom: 8px;
}
.bstaff-nav-tab-wrapper a{
    color: #555;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #ccc;
    background: #2196F3;
    border-bottom: 1px solid #ccc;
    border-radius: 5px 5px 0 0;
}
.bstaff-nav-tab-wrapper a.nav-tab-active {
    background: #fff;
    border-bottom: 1px solid transparent;
    color: #000;
}
/* Hide content in inactive tabs */
.tab-content {
    display: none;
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
}

.tab-content.active {
    display: block;
}
/* Estilo para el switch de Habilitar/Deshabilitar */
.btn-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.btn-switch input { display: none; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    width: 60px;
    height: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider { background-color: #2196F3; }
input:checked + .slider:before { transform: translateX(26px); }

/* Estilos para la selección de estilos visuales */
.style-preview-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.style-card-option {
    cursor: pointer;
    text-align: center;
}
.style-card-option input[type="radio"] {
    display: none;
}
.style-card {
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 10px;
}
.style-card-option input[type="radio"]:checked + .style-card {
    border-color: #0073aa;
    background-color: #e6f3ff;
}
.style-card:hover {
    border-color: #00a0d2;
}
.style-preview {
    width: 200px;
    height: 200px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Previsualizaciones de los estilos */
.style-1 .member-image { width: 80px; height: 80px; border-radius: 50%; background-color: #a0a0a0; }
.style-2 .member-image { width: 100%; height: 120px; background-color: #a0a0a0; border-radius: 4px; }
.style-3 .member-image { width: 100%; height: 100%; background-color: #a0a0a0; }
.style-1 .member-name, .style-2 .member-name, .style-3 .member-name { font-weight: bold; margin: 10px 0 5px 0; }
.style-1 .member-role, .style-2 .member-role, .style-3 .member-role { font-size: 0.9em; color: #777; margin: 0; }