@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;1,300&display=swap');
body, html{
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

body {
    padding-top: 70px;
}

#sidebarMenu {
    position: fixed;
    top: 65px;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

#clientTableContainer {
    margin-top: 20px;
}

.valid {
    color: #13a698;
    list-style-type: none;
    position: relative;
}

.valid::before {
    content: '✔';
    position: absolute;
    left: -18px;
}

.invalid {
    color: #575757;
    list-style-type: disc;
}

.btn-group .btn-check + .btn {
    flex: 1;
    text-align: center;
}
.btn-group {
    display: flex;
    width: 100%;
}

.nav-link{
    color: #001d7b;
}

.nav-link:hover{
    color: #5dc2da;
}

.custom-button {
    background-color: #001d7b;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #5dc2da;
}

.custom-button-rojo {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-button-rojo:hover {
    background-color: #bb2d3b;
}

.pagination .page-item.active .page-link {
    background-color: #0159b2; /* Color de fondo del botón activo */
    color: white; /* Color del texto */
    border-color: #0159b2; /* Opcional: cambiar el color del borde para que coincida */
}

.pagination .page-link {
    color: #0159b2; /* Color de los enlaces de paginación */
}

.pagination .page-link:hover {
    background-color: #0068b6; /* Color de fondo al pasar el ratón */
    color: white; /* Color del texto al pasar el ratón */
    border-color: #0068b6; /* Cambiar el color del borde al pasar el ratón */
}

#editor {
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: .375rem .75rem;
    min-height: 200px;
    overflow-y: auto;
}
.toolbar {
    margin-bottom: 10px;
}
.toolbar button {
    margin-right: 5px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

#calendar {
    width: 100%;
    overflow: auto;
}

.fc-daygrid-day-number,
.fc-col-header-cell-cushion {
    color: black !important;
    text-decoration: none !important;
}

/* .fc-day-fri:not(.fc-col-header-cell) {
    background: linear-gradient(to bottom, transparent 45%, #e5cb68 45%, #e5cb68 100%) !important;
    background-size: 100% 100%;
}

.fc-day-sat:not(.fc-col-header-cell) {
    background-color: #e5cb68 !important;
}

.fc-day-sun:not(.fc-col-header-cell) {
    background: linear-gradient(to bottom, #e5cb68 0%, #e5cb68 45%, transparent 45%, transparent 100%) !important;
    background-size: 100% 100%;
}

.fc-day-sun::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 45%;
    width: 100%;
    background-color: #e5cb68;
    z-index: 1;
}

.fc-toolbar {
    background-color: #001d7b;
} */

.fc-button {
    color: white; /* Cambia el color del texto de los botones a blanco */
    background-color: #0159b2;
}

.fc-button:hover {
    background-color: #0068b6; /* Opcional: Cambia el color de fondo al pasar el mouse */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
    outline: none; /* Elimina el borde de enfoque por defecto */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8); /* Crea un borde blanco más fino */
}

#responsive_visible {
    display: none;
}

@media (min-width: 992px) {
    .custom-widthp {
        width: 12%;
    }

    .custom-widthg {
        width: 88%;
    }
}

@media (max-width: 768px) {
    .calendar-wrapper {
        overflow-x: auto;
        width: 100%;
        white-space: nowrap;
    }
    
    #calendar {
        min-width: 600px; /* Ajusta este valor según sea necesario */
    }

    #normal_visible {
        display: none;
    }

    #responsive_visible {
        display: block;
    }
}

@media (max-width: 576px) {
    .navbar .user-section {
        margin-left: auto;
    }

    .navbar-brand img {
        max-width: 50px; /* Ajustar el tamaño del logo si es necesario */
    }
}