*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1{
    color: #dadada;
}

body{
    background-color: #3a3a47;
    display: flex;
    flex-direction: column;
    font-family: arial;
    font-weight: bold;
    min-height: 100vh;
    min-width: 100vh;
}   

#button-area{
    display: flex;
    justify-content: space-around;
}

#button-prev, #button-next{
    width: 40%;
    height: 22px;
    visibility: hidden;
    background-color: rgb(70, 121, 168);
    border:none;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

#search-button{
    width: 60px;
    height: 24px;
    pointer-events: none;
    background-color: rgb(223, 223, 223);
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#clear-button{
    width: 60px;
    height: 24px;
    background-color: rgb(146, 242, 255);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: rgb(58, 58, 58);
}

#content{
    width: max-content;
    height: max-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: auto;
}

footer{
    text-align: center;
    width: 100%;
    color: white;
}

footer a{
    text-decoration: underline;
    color: white;
}

footer p{
    margin: 3px;
}


input{
    width: 230px;
    height: 24px;
}

#response{
    color: #f0f0f5;
    visibility: hidden;
}

#result-content{
    width: 400px;
    min-height: 200px;
    /* background-color: #696979; */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#resultTable{
    border-collapse: collapse;
    border: 1px solid #696979;
}

#resultTable tr {
    padding: 10px;
}

#resultTable td {
    padding: 3px;
    color: #ececec;
}

/* Altera a cor de fundo das células ímpares */
tr:nth-child(odd) {
    background-color: #474747; /* Cor de fundo para as células ímpares */
}

/* Altera a cor de fundo das células pares */
tr:nth-child(even) {
    background-color: #868686; /* Cor de fundo para as células pares */
}

#resultTable th{
    background-color: rgb(48, 41, 41);
    color: white;
    text-align: center;
    padding: 4px;
    /* border: 1px solid black; */
}