.custom-box {
    box-shadow: 0 4px 8px rgba(4, 43, 150, 0.61); /* Sombra */
  color: #0E138D; /* Color del texto */
  padding: 20px; /* Relleno interno (opcional) */
  border-radius: 5px; /* Esquinas redondeadas (opcional) */
  font-family: 'Inter', sans-serif; /* Tipo de letra */
  font-weight: bold;
  
  font-size: 100px; /* Tamaño de letra */
}

.main-container {
  position: relative;
  z-index: 1;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background-size: cover;
  background-position: center;
  opacity: 0.5; 
  z-index: -1;
}




.custom-box1 {
  box-shadow: 0 4px 8px rgba(4, 43, 150, 0.61); /* Sombra */
    background-color: #0E138D; 
  color: #ffffff; /* Color del texto */
  padding: 50px; /* Relleno interno (opcional) */
  border-radius: 10px; /* Esquinas redondeadas (opcional) */
  font-family: 'Inter', sans-serif; /* Tipo de letra */
  font-weight: bold;
  font-size: 100px; /* Tamaño de letra */
}


.custom-box3 {
  display: flex; /* Habilita Flexbox */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  box-shadow: 0 4px 8px rgba(4, 43, 150, 0.61); /* Sombra */
  background-color: #0E138D; 
  color: #ffffff; /* Color del texto */
  padding: 20px; /* Relleno interno (opcional) */
  border-radius: 10px; /* Esquinas redondeadas (opcional) */
  font-family: 'Inter', sans-serif; /* Tipo de letra */
  font-weight: bold;
  font-size: 50px; /* Tamaño de letra */
  height: 100%; /* Asegúrate de que el contenedor tenga una altura definida */
}



.custom-box2 {
  box-shadow: 0 7px 15px rgba(21, 44, 247, 0.61); /* Sombra */
    background-color: #0E138D; 
  color: #f0f0f0; /* Color del texto */
  padding: 20px; /* Relleno interno (opcional) */
  border-radius: 10px; /* Esquinas redondeadas (opcional) */
  font-family: 'Inter', sans-serif; /* Tipo de letra */
  font-weight: bold;
  font-size: 50px; /* Tamaño de letra */
}





.button {
  box-shadow: 0 4px 8px rgba(4, 43, 150, 0.61); /* Sombra */
  background-color: #0E138D; /* Green */
  border: none;
  border-radius: 10px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', sans-serif; /* Tipo de letra */
font-weight: bold;
  font-size: 16px;
}

.custom-input {
       
        box-shadow: 0 4px 8px rgba(4, 43, 150, 0.61); /* Sombra */
        height: 140px; /* Altura personalizada */
        font-size: 4rem; /* Aumenta el tamaño del texto */
        padding: 10px; /* Aumenta el espacio interno */
    }


.custom-button {
  background: none; /* Sin fondo */
  border: none; /* Sin borde */
  padding: 0; /* Sin relleno */
  cursor: pointer; /* Cursor de mano para el botón */
}
.custom-button1 {
  background: none; /* Sin fondo */
  border: none; /* Sin borde */
  padding: 0; /* Sin relleno */
  cursor: pointer; /* Cursor de mano para el botón */
}


.big-message {
  font-size: 2em;   /* Cambia el tamaño de la fuente */
  line-height: 1;   /* Ajusta el espacio entre las líneas */
  text-align: center; /* Asegura que el texto esté centrado */
  white-space: pre-wrap; /* Permite que los saltos de línea se respeten */
  margin: 20px 0; /* Agrega un margen arriba y abajo */
}

.custom-image {
  width: 250px; /* Ajusta el ancho a tu gusto */
  height: auto; /* Mantiene la proporción de la imagen */
  display: block; /* Necesario para centrar */
  margin: 0 auto; /* Centra la imagen horizontalmente */
  color: #0E138D;
}


.custom-image1 {
  width: 300px; /* Ajusta el ancho a tu gusto */
  height: auto; /* Mantiene la proporción de la imagen */
  display: block; /* Necesario para centrar */
  margin: 0 auto; /* Centra la imagen horizontalmente */
  color: #0E138D;
}


.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

#dashboard-title {
    margin-top: 25px;
    background-color: #0c0550;
    color: #fcfcfc;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 10px;

}

#dashboard-title img {
    float: left;
    height: 60px;


}

#video-container {

    box-shadow: 0 4px 12px rgba(4, 43, 150, 0.61); /* Sombra */
 
    margin-bottom: 20px;
   
}

#video {
    width: 50%;
}


/* static/css/styles.css */

#video-container.video-large {
    width: 100%; /* Puedes ajustar este valor según necesites */
    height: 1000px; /* Ajusta esta altura según tus necesidades */
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#video-container.video-large video {
    width: 100%; /* El video ocupará todo el ancho del contenedor */
    height: 100%; /* El video ocupará toda la altura del contenedor */
    object-fit: cover; /* Esto hará que el video cubra todo el contenedor */
}

/* Estilos para los filtros de ingresos */
.filters-section {
    margin-bottom: 30px;
}

.filters-section .card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filters-section .card-title {
    color: #0E138D;
    font-weight: bold;
    margin-bottom: 15px;
}

.filters-section .form-label {
    font-weight: 600;
    color: #333;
}

.filters-section .btn {
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filters-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.filters-section .btn i {
    margin-right: 8px;
    font-size: 14px;
}

.filters-section .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Mejoras para la tabla */
#user-table {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

#user-table thead th {
    background-color: #0E138D;
    color: white;
    border: none;
    font-weight: 600;
}

#user-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Estilos para botones en la tabla */
#user-table .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

#user-table .btn-sm i {
    font-size: 12px;
}

/* Estilos para botones en el modal */
.modal .btn i {
    margin-right: 6px;
    font-size: 14px;
}

/* Responsive para filtros */
@media (max-width: 768px) {
    .filters-section .row {
        margin-bottom: 15px;
    }
    
    .filters-section .col-md-4 {
        margin-bottom: 10px;
    }
}
