:root{
    --primary-color: #6e8898;
    --secundary-color: #9fb1bc;
    --third-color: #e2c044;
    --fourth-color: #d3d0cb;
}


html{
    scroll-behavior: smooth;
}


/*
Pallete 1

#424b54, #C5BAAF, #E1CE7A, #f5f5dc

Patete 2

#ac80a0,#89aae6,#3685b5,#0471a6,#061826

Patelte 3

#773344,#e3b5a4,#f5e9e2,#0b0014,#d44d5c

Patete 4

#2e5266, #6e8898, #9fb1bc, #d3d0cb, #e2c044

*/
body{
    font-family: Verdana, serif;
    font-size: 14px;
    background-color: var(--fourth-color);
}

button{
    height: 30px;
    font-family: Verdana, serif;
    font-size: 14px;
    background-color: var(--secundary-color);
    color: black;
    width: 150px;
    border-radius: 7px;
    border: 1px solid #CCCCCC;
    cursor: pointer;
}

button.save {
    background-color: #a2eb22;
}

button.delete {
    background-color: lightcoral;
}

.buttonRow{
    height: 50px;
    border-top: #ababab solid 1px;
    text-align: center;
}
input{
    font-family: Verdana, serif;
    font-size: 14px;
    height: 30px;
    width: 300px;
    border-radius: 7px;
    border: 1px solid #CCCCCC;
}

textarea{
    font-family: Verdana, serif;
    font-size: 14px;
    width: 300px;
    border-radius: 7px;
    border: 1px solid #CCCCCC;
}

select{
    height: 30px;
    font-size: 14px;
}

div.pageContent{
    padding: 10px 10px 10px 10px;
}

.container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    background-color: azure;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.table{
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.headerRow{
    display: flex;
    flex-direction: row;
    background-color: var(--primary-color);
    color: white;
    padding: 5px;
    height: 40px;
    font-weight: bold;
    text-align: center;
    align-items: center;
}

.row{
    height: 40px;
    display: flex;
    flex-direction: row;
    padding: 5px;
    background-color: var(--secundary-color);
    align-items: center;
}

.cell{
    flex: 1;
    padding: 5px;
    border-right: 1px solid dimgray;
}

.centerCell{
    text-align: center;
}

.editCell{
    flex: 1;
    width: 30px;
    padding: 5px;
    border-right: 1px solid dimgray;
}
.doubleCell{
    flex: 2;
}

.lastCell{
    flex: 1;
    padding: 5px;
}

.header{
    border-top-radius: 15px;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.headerContent{
    padding: 3px 10px 10px 10px;
}

a{
    color: white;
}


.pageTitlePanel{
    font-size: 20px;
    width: 100%;
    background-color: var(--third-color);
    border-bottom-radius: 15px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);

}

.pageTitle{
    padding: 10px;
    font-weight: bold;
}

.listPageActions{
    display: flex;
}

.rowsCounter{
    padding: 10px;
    font-size: 15px;
}

.focusField{
    background-color: peachpuff;
    font-family: Verdana, serif;
    font-size: 14px;
    height: 30px;
    width: 300px;
    border-radius: 7px;
    border: 1px solid #000000;
}

.homePageContainer{
    display: flex;
    flex-direction: row;
}

.homePageElement{
    flex: 1;
}

.homePageElementTitle{
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background-color: var(--fourth-color);
}

.homePageElementList{
    font-size: small;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}