* {
    font-family: Arial, Helvetica, sans-serif;
}
table {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

th, td {
    padding: 8px;
    border: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

td {
    text-align: center;
    background-color: bisque;
}
fieldset {
    width: fit-content;
    box-sizing: border-box;
    border-radius: 20px 0 20px 0;
    background-color: rgb(96, 229, 247);
    color: black;
    font-weight: bold;
    border-color: rgb(0, 255, 21) rgb(157, 255, 0) rgb(0, 81, 255) rgb(0, 4, 255);
    border-width: 0px 10px 10px 0px;
    border-style: ridge;
    box-shadow: inset 0px 0px 10px #aaa;
    margin:auto;
}
input[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #4CAF50; /* Color del borde */
    color: #fff; /* Color del texto */
    background-color: #4CAF50; /* Color de fondo */
    border-radius: 5px; /* Bordes redondeados */
    transition: background-color 0.3s, color 0.3s; /* Transición suave */
    box-shadow: #3e8e41 5px 5px 5px;
}
input[type="submit"]:hover {
    background-color: #45a049; /* Color de fondo al pasar el ratón */
}
input[type="submit"]:active {
    background-color: #3e8e41; /* Color de fondo al presionar */
}