/* Importar la fuente Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@media (min-width: 1200px) {
    .container {
        width: 100%!important;
    }
}

.main-header {
    z-index: 10!important;
}
.dropdown-menu.menu-user{
    z-index: 10!important;
}

.content-wrapper.panel-medio-principal{
    z-index: 9!important;
}

.navbar {
    z-index: 9!important; /* Asegura que el menú esté siempre sobre el resto del contenido */
}
.left-panel {
    flex: 1;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    padding: 20px;
}

.left-panel h1 {
    font-size: 48px;
    color: white;
    text-align: left;
    line-height: 1.5;
    max-width: 600px;
    font-weight:900
}

/* Contenedor para el input y el icono */
.file-input-container_1 {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinea el input y el icono a la derecha */
    width: 100%;
    position: relative;
}

/* Contenedor para el input y el icono */
.file-input-container {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinea el input y el icono a la derecha */
    width: 100%;
    position: relative;
}

/* Estilo del input de archivo */
.file-input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


.container_1 {
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Utilizamos min-height en lugar de height */
    padding: 0;
    margin: 0 auto;
    flex-direction: column;
    justify-content: flex-start; /* Cambié a flex-start para que el contenido se alinee desde arriba */
    align-items: center;
    font-family: 'Poppins', sans-serif;
    /* Asegura que no haya scroll horizontal */
}

.container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    padding: 10px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; /* Asegura que no haya scroll horizontal */
}


.menu {
    display: flex;
    margin-right: 20px;
}

.menu-item {
    margin: 0 15px;
    text-decoration: none;
    color: #00256b;
    font-weight: bold;
}

.menu-item.active {
    color: #ffffff;
}

.join-button {
    background-color: #00256b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.title-section {
    text-align: right;
}

.title {
    font-size: 25px;
    color: #ffffff;
    font-weight: bold;
    padding: 0pt;
}

.subtitle {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    margin-top: 20px;
}

.form-section {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    justify-content: space-between;
}

label {
    font-size: 16px;
    color: #ffffff;
    width: 150px;
}

.oval-textarea {
    background-color: #f2f2f2;
    border: none;
    border-radius: 20px !important;
    padding: 15px;
    width: 800px;
    resize: none;
    font-size: 16px;
}

.create-button {
    background-color: #002d80;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.create-button i {
    margin-left: 8px;
}

.search-section {
    padding: 20px;
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.search-bar {
    background-color: #4e8c3b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

.search-bar i {
    margin-right: 10px;
}

.filter {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 10px!important;
    transition: background-color 0.3s ease, color 0.3s ease;
    width:100%!important;
    
}

.filterr_1 {
    background-color: transparent!important;
    border: 0px solid white!important;
    text-decoration: none!important;
    font-size: 8pt!important;
    padding: 0px !important;
}

.filter:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.record-table-header {
    grid-template-columns: repeat(11, 1fr);
    background-color: #4e8c3b;
    color: white;
    padding: 10px;
    margin: 20px 0;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
}

.record-table-header th{
    padding: 0px 10px;
}

.record-table-body {
    display: grid;
    grid-template-rows: repeat(5, auto);
    grid-template-columns: 1fr;
}

.record-row {
    background-color: #f4f4f4;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 30px;
    width: 100%;
}

td {
    width: 100px; /* Ancho fijo para todas las celdas */
    height: 50px; /* Alto fijo para todas las celdas */
    background-color: #f0f0f0; /* Color de fondo */
    padding: 5px; /* Espacio interno en las celdas */
    text-align: center; /* Centrar el contenido */
  }

  /* Opcional: Para evitar el colapso de esquinas */
tr:first-child td:first-child {
    border-top-left-radius: 10px; 
  }
  
  tr:first-child td:last-child {
    border-top-right-radius: 10px; 
  }
  
  tr:last-child td:first-child {
    border-bottom-left-radius: 10px; 
  }
  
  tr:last-child td:last-child {
    border-bottom-right-radius: 10px; 
  }

@media (max-width: 200px) {
    .container {
        max-width: 100%;
    }

    .oval-textarea {
        width: 100%;
    }

    .create-button {
        width: 100%;
    }
}
