* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    appearance: 0;
    outline: none;
}

body {
    font-family: 'Roboto', sans-serif;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 96%;
    margin: auto;
    padding-top: 10px;
}

.head-section {
    background-color: #5872FF;
    display: flex;
    align-items: flex-end;
    padding: 10px 50px 20px 20px;
    margin-bottom: 40px;
    border-radius: 20px;
    justify-content: space-between;
}

.head-section img {
    max-width: 150px;
}

.head-section h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 20px;
}

.head-section h2 {
    font-size: 30px;
}

.main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
}

[data-tab-content] {
    display: none;
    flex-direction: column;
    gap: 10px;
}


.active[data-tab-content] {
    display: flex;
}

body {
    padding: 0;
    margin: 0;
} 

.header-info {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    border: 1px solid #BDBABA;
    border-radius: 20px;
    padding: 14px;
    align-items: center;
}

.header-info .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.table-container {
    padding: 20px;
    border: 1px solid #BDBABA;
    border-radius: 20px;
    
}

table {
    text-align: left;
    border-collapse: collapse;
    width: 100%;
}

table tr td, table tr th {
    min-width: 80px;
}

table tr  th {
    padding: 10px 0px;
}

table tr td {
    padding: 7px 5px;
}

table tbody tr:nth-child(odd) {
    background-color: #e3e3e3;
}

button {
    cursor: pointer;
}

.inputs-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px;
    background-color: rgb(241, 240, 240);
    border-radius: 20px;
}

.inputs-container > div {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 15px;
}

.input {
    display: flex;
    flex-direction: column;
    width: 100%;
}

input {
    padding: 10px 3px;
    border: 1px solid rgba(0,0,0, 0.5);
    border-radius: 5px;
}



.tabs {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.tab {
    cursor: pointer;
    padding: 20px;
    border: 1px solid #FFBE18;
    border-radius: 20px;
    text-align: center;
}

.tab.active {
    background-color: #FFBE18;
}

.tab:hover {
    background-color: #FFBE18;
}

.tab-content {
    margin-left: 20px;
    margin-right: 20px;
}

#add1,#add2,#add3,#add4 {
    background-color: #011fc8;
    padding: 10px ;
    border: none;
    border-radius: 5px;
    color: white;

}

#edit1,#edit2,#edit3,#edit4 {
    background-color: #FFBE18;
    padding: 10px ;
    border: none;
    border-radius: 5px;
    color: white;
    display: none;
}

#edit1.active,#edit2.active,#edit3.active,#edit4.active {
    display: block;
}


.warning {
    color: #FFBE18;
}

.edit-button-first,.edit-button-second,.edit-button-third,.edit-button-fourth {
    padding: 5px 10px;
    background-color: #011fc8;
    cursor: pointer;
    border: none;
    color: white;
    border-radius: 3px;
}

.delete-button-first,.delete-button-second,.delete-button-third,.delete-button-fourth {
    padding: 5px 10px;
    background-color: #d0583f;
    cursor: pointer;
    border: none;
    color: white;
    border-radius: 3px;
}