body {
    margin: 0; /* Eliminar margen predeterminado del body */
    padding: 0; /* Eliminar relleno predeterminado del body */
    background-image: url("./asset/1.png");
    background-size: cover; /* Hace que la imagen de fondo cubra todo el body */
    background-position: center; /* Centra la imagen de fondo */
    background-repeat: no-repeat; /* Evita que la imagen de fondo se repita */
    height: 100vh; /* Hace que el body tenga una altura del 100% del viewport */
}

.miDiv {
    padding: 7px;
    /* Puedes ajustar el valor según tu preferencia */
    background-color: #ffffff;
}

/* Estilos generales para la tabla */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left;
}


.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    /* Centrar el texto en todas las celdas */
}

/* Estilos para el botón */
.styled-button {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #3498db;
    color: #3498db;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.styled-button:hover {
    background-color: #db8534;
    color: white;
}



/* Estilos para el modal actualizacion */
.modalUpdate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modalUpdate-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .modalUpdate-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  
  .modalUpdate-header h2 {
    margin: 0;
  }
  
  .modalUpdate-body {
    padding: 20px 0;
  }
  
  .modalUpdate-body label {
    display: block;
    margin-bottom: 10px;
  }
  
  .modalUpdate-body input, .modalUpdate-body select {
    width: calc(100% - 40px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .modalUpdate-footer {
    text-align: right;
  }
  
  .modalUpdate-footer button {
    margin-right: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .modalUpdate-footer button:hover {
    background-color: #2980b9;
  }

  .modalUpdate-footer button:last-child {
    margin-right: 0;
  }

  