body {
    background-color: #E9EDF0; /* color marmol */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 80%; /* Reducción del 20% */ 
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
}

td {
    padding: 10px;
    text-align: left;
    font-weight: bold; /* Texto en negrita */
}

input[type="text"], input[type="password"], select {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

input[type="submit"] {
    background-color: #4CAF50; /* Verde */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}
/* custom.css */

input[type="submit"]:hover {
    background-color: #45a049;
}
#suggestionBox {
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    font-weight: bold;
    padding: 10px;
    text-transform: uppercase;
}

#suggestionBox:hover {
    background-color: #000;
    color: #fff;
}