/* .form-section {
    display: none !important;
}

.form-section:not(.d-none) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
} */

.main-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.sidebar {
    background-color: #e0f7ff;
    border-right: 1px solid #cceeff;
    padding: 20px 0;
    border-radius: 10px 0 0 10px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    border-left: 5px solid transparent;
    font-weight: bold;
    color: #007bff;
}

.sidebar-item:hover,
.sidebar-item.active {
    background-color: #cceeff;
    border-left: 5px solid #007bff;
}

.content-area {
    padding: 20px;
    overflow-y: auto;
}

.form-section {
    background-color: #f7fcff;
    border: 1px solid #e0f7ff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.form-section-header {
    background-color: #e0f7ff;
    padding: 10px 15px;
    margin: -15px -15px 15px -15px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    color: #007bff;
}

.footer-buttons {
    background-color: #e0f7ff;
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: auto;
}

.input-group-text {
    background-color: #cceeff;
    border-color: #cceeff;
}


/* Forzar SOLO este modal a estar por encima de todo */

#modalCrearCliente {
    z-index: 9999 !important;
}


/* Backdrop del modal Crear Cliente */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -9000;
    width: 100vw;
    height: 100vh;
    /* background-color: #000; */
}

.modal-backdrop.show {
    opacity: -5;
}


/* .modal-backdrop.show {
    z-index: 9998 !important;
} */