main{
    font-family: inherit;
    width: 100%;
    transition: margin 0.5s ease;
    flex-grow: 1;
    overflow-x: auto;
    margin-left: 280px;
}

main.closed{
    margin-left: 70px;
}

.pageContent{
    padding: 20px 40px;
    font-family: inherit;
    background-color: white;
}

.banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: .8;
    gap: 8px;
    font-family: inherit;
    width: 100;
    padding: 32px;
    border-radius: 8px;
    background-color: rgb(236, 242, 255);
    margin-bottom: 30px;
}

.banner h3{
    font-family: inherit;
    font-weight: 500;
    font-size: 24px;
}

.banner .src{
    display: flex;
    width: 100%;
    justify-content: start;
    gap: 8px;
    align-items: center;
}

.banner .src .separator{
    width: 4px;
    height: 4px;
    background-color: #5c5c5c;
    border-radius: 100%;
}

.banner .src p{
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
    color: #5c5c5c;
}

.banner img{
    width: 60px;
    color: var(--medium-green);
}

.banner .texts{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.controlls{
    display: flex;
    align-items: end;
    justify-content: end;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 16px;
}

.select_container{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 8px;
}

.select_container select{
    outline: 0;
    border: 1px solid var(--grey);
    border-radius: 8px;
    background-color: white;
    padding: 8px;
    width: 180px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
    font-size: 14px;

    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

.select_container p{
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
}

.select_container select option{
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
}

.submitButton{
    height: 38px;
    font-size: 16px;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    background-color: var(--medium-green);
    color: white;
    text-transform: capitalize;
    vertical-align: middle;
}

.import-section{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.import-section h3{
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
}

.import-section form{
    display: flex;
    align-items: center;
    gap: 8px;
}

input[type="file"]{
    display: none;
}

.custom-file-button{
    font-size: 14px;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    background-color: white;
    color: var(--medium-green);
    text-transform: capitalize;
    vertical-align: middle;
    height: auto;
    border: 1px solid var(--medium-green);
}


.container{
    border-radius: 8px;
    box-shadow:  0px 0px 2px 0px rgb(145, 158, 171, 30%), 
                0px 12px 24px -4px rgb(145, 158, 171, 30%);
    font-family: inherit;
}

.title{
    font-family: inherit;
    font-weight: 500;
    color: var(--dark-grey);
    border-bottom: 1px solid #ececec;
    padding: 20px;
}

.table_container {
    max-width: 100%;
    padding: 20px;
    font-family: inherit;
    overflow-x: auto;
    border-radius: 8px;
}

.tableControlls p{
    font-family: inherit;
    font-weight: 400;
    padding: 10px 20px 0 20px;
}

.tableControlls{
    padding: 15px 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
    font-family: inherit;
}

.tableControlls .tableControll{
    display: flex;
    align-items: center;
    gap: 8px;
}

.tableControlls .tableControll label{
    font-family: inherit;
    font-weight: 300;
}

.tableControlls .tableControll img{
    width: 20px;
}

.table-wrapper {
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

table {
    width: 100%;
    min-width: 95%;
    border: 1px solid var(--grey);
    border-radius: 8px;
    font-family: inherit;
    border-collapse: collapse;
}

table tr th{
    text-align: start;
    padding: 10px;
    border-bottom: 1px solid var(--grey);
    font-family: inherit;
    font-weight: 500;
    color: var(--dark-grey);
}

table tr td{
    padding: 10px;
    font-family: inherit;
    font-weight: 300;
    font-size: 16px;
}

tr:not(:last-child) td {
    border-bottom: 1px solid var(--grey);
}

td, th{
    white-space: nowrap;
    text-overflow: ellipsis;

}

.actionsTable{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.user{
    display: flex;
    align-items: center;
    justify-content: start;
}

#user_table{
    padding: 5px 0;
    gap: 8px;
}

.user img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.user .info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info.closed{
    display: none;
}

.user .info .name{
    font-size: 16px;
}

.user .info .position{
    font-size: 12px;
}

#team_column{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
}

#team_column img{
    margin-left: -10px;
}

.tabelInfos{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    padding: 20px;
}

.tabelInfos p{
    font-family: inherit;
    font-weight: 500;
}

.tabelInfos .info{
    display: flex;
    align-items: center;
    gap: 8px;
}

.tabelInfos .info p{
    font-family: inherit;
    font-weight: 300;
}

.tabelInfos .info span{
    font-family: inherit;
    font-weight: 400;
    color: var(--dark-grey);
}

@media(max-width: 760px){
    main{
        margin-left: 0;
    }

    .pageContent{
        padding: 20px;
    }

    .select_container{
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: start;
        margin-bottom: 30px;
    }
}