.button-administrator-style {
    background: transparent;
    border: none;
    position: -webkit-sticky;
    position: sticky;

    margin-top: 15px;
    padding: 0;

    top: 60px;
    left: 20px;

    width: 60px;
    height: auto;

    cursor: pointer;

    transition: transform 0.4s ease;
}

.button-administrator-style:hover {
    transform: rotate(90deg) scale(1.08); 
}

.img-button-administrator {
    display: block;
    width: 60px;
    height: auto;
}

.input-administrator {
    margin-top: 10px;
    box-sizing: border-box;
    width: 85%;
    padding: 10px;
    color: #0d2d6d;
    border: 5px solid #0d2d6d;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: Arial, sans-serif; /* Por si es necesario */
    
}

.button-class {
    box-sizing: border-box;
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    color: #0d2d6d;
    border: 5px solid #0d2d6d;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: Arial, sans-serif; /* Por si es necesario */
    cursor: pointer;

    
}

.button-class:hover {

    border-color: #0a58ca;
    color: #0a58ca;

    transition: color ease 0.3s, border-color ease 0.3s;
}

.title-administrator {
    margin: 0 0 10px 0;
}

.line-division {
    border: none;
    background-color: #0d2d6d;
    height: 2px;
    margin-bottom: 10px;
    border-radius: 100%;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    width: 85%;
    margin: 0 auto;
}

.modal-container {
    align-items: center;
}

dialog {
    box-sizing: border-box;
    color: #0d2d6d;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    padding: 20px;
    width: 35%;
    font-weight: 700;
    font-family: Arial, sans-serif; /* Por si es necesario */

    text-align: center;

    box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
}

dialog::backdrop {
  background: #0d2d6d80;
  backdrop-filter: blur(15px); /* Efecto de desenfoque de fondo */
}

.container-database {
    border: solid 1px #0a58ca;
    border-radius: 16px;

    overflow: hidden;
}

.header-database {

    border-bottom: solid 1px #0a58ca;
    display: grid;

    grid-template-columns: 1fr 2.25fr 1.75fr 1fr;
    background-color: #0a57ca32;
    /*width: 100%;*/

    padding: 16px;
    font-family: arial, sans-serif;
}

.header-database > * {
    font-weight: 700;
    color: #0d2d6d;
    text-transform: uppercase;
}

.body-database {

    background-color: #0a57ca1a;
    font-family: Arial, sans-serif;

    
}

ul {
    margin: 0;
    padding: 0;
}

.data-item {
    list-style: none;

    display: grid;

    grid-template-columns: 1fr 2.25fr 1.75fr 1fr;
    border-bottom: solid 1px #0a58ca;
    padding: 15px;
}

li > * {
    color: #0d2d6d;
}

.label-form {
    color: #0d2d6d;
    text-align: center;
}


.select-database {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background: none;
    border: none;
    font-family: Arial, sans-serif;
    font-weight: 700;

    text-align: center;
    font-size: 16.4px;
    
}

.select-database option {
    padding: 0;
}