/* @media print {
    #form-container {
        display: block !important;
    }

    #content-wrapper {
        background-color: white !important;
    }

    .dataTables_filter {
        display: none !important;
    }

    .dataTables_info {
        display: none !important;
    }

    #accordionSidebar {
        display: none !important;
    }

    .sticky-footer {
        display: none !important;
    }

    .scroll-to-top {
        display: none !important;
    }

    .justify-content-between {
        display: none !important;
    }

    .btn {
        display: none !important;
    }
} */

#dataTables_filter {
    text-align: right !important;
}

.text-muted {
    display: hidden !important;
}

/* CSS para la clase .nav-fixed */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.form-control {
    border-radius: 0.5rem !important;
    box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.btn-success {
    box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
}

.card {
    border-radius: 0.1rem;
}

/* Estilos para redondear los bordes de la tabla */
.table-rounded {
    border-radius: 15px;
    border-style: none;
}

/* Estilos adicionales si lo deseas (por ejemplo, sombra) */
.table-rounded {
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-style: none;
}

/* Estilos para hacer que los botones sean circulares */
.btn-circle {
    border-radius: 50%;
}

/* Estilos adicionales para los botones circulares si lo deseas (por ejemplo, tamaño) */
.btn-circle {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 15px;
    /* Ajusta el relleno según el tamaño deseado */
}

/* Añade esta regla CSS para ocultar el sidebar cuando se añada la clase "sidebar-hidden" */
/* .sidebar-hidden .sidebar {
    display: none;
  } */

/* Ajusta el contenido principal para ocupar todo el ancho cuando el sidebar esté oculto */
.sidebar-hidden .main {
    margin-left: 0;
}

/* Ajusta el ancho del contenido principal cuando el sidebar esté visible */
.main {
    transition: margin-left 0.3s;
}

.sidebar_stiky {
    position: fixed;
    z-index: 2 !important;
}

#content-wrapper {
    padding-left: 225px !important;
}


.tobar_stiky {
    position: fixed;
    z-index: 1 !important;
    margin-left: -20px !important;
    padding-left: 1532px !important;
}

.body_padding {
    padding-top: 70px !important;
}

@media screen and (max-width: 767px) {

    /* Estilos para pantallas de ancho menor o igual a 767px */
    #content-wrapper {
        padding-left: 105px !important;
    }
}

@media screen and (max-width: 474px) {
    #content-wrapper {
        padding-left: 0px !important;
    }
}

/* Estilos para el sidebar cuando tiene la clase "toggled" */
#accordionSidebar.toggled .collapse-inner {
    padding: 0;
}

/* Centrar el formulario verticalmente */
.container_form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Estilos para los pasos activos */
.step-line {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step-dot {
    width: 25px;
    height: 25px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #ccc;
}

.step-dot.active {
    border-color: #007bff;
    color: #007bff;
}

.step-divider {
    flex: 1;
    height: 2px;
    background-color: #ccc;
    margin-top: 11px;
}

.step-divider.active {
    background-color: #007bff;
}

/* Estilos personalizados para el searchable select */
.select2-container {
    width: 100% !important;
}

.select2-selection--single {
    height: 36px !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
}

.select2-selection__rendered {
    line-height: 36px !important;
}

.select2-search__field {
    height: 36px !important;
    line-height: 36px !important;
    padding: 0.375rem 0.75rem !important;
}

.right-align {
    float: right;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

@media print {

    /* Oculta algunos elementos no necesarios para impresión */
    body * {
        visibility: hidden;
    }

    #print-content,
    #print-content * {
        visibility: visible;
    }

    /* Opcional: establece un margen para el contenido impreso */
    #print-content {
        /* position: absolute; */
        left: 0;
        top: 0;
        right: 0;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #content-wrapper {
        padding-left: 0px !important;
    }

    /* Establece los márgenes para cada página */
    @page {
        margin: 20mm;
        /* Puedes ajustar el valor según tus necesidades */
    }
}

.table-container {
    display: flex;
}

.table-container table {
    flex: 1;
    margin: 10px;
    border-collapse: collapse;
}

th {
    margin: 1px !important;
}

.edit-binnacle {
    background: #fffed4;
    color: #644d00;
}

.create-binnacle {
    background: #d4ffe7;
    color: #00200f;
}

.delete-binnacle {
    background: #ffdede;
    color: #200000;
}

.dashboard {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    background-color: #35495e;
    background-image: linear-gradient(180deg, #4e73df 10%, #224abe 100%);
    border-radius: 25px;
}

.welcome {
    text-align: center;
    color: #fff;
}

.welcome h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dashboard .welcome {
    animation: fadeIn 1.5s ease-in-out;
}