:root{
    --index: calc(1vw + 1vh);
    --gaper: 60px;
    --radiuser: 10px;
}

body {
    color: black;
    font-size: calc(var(--index) * 1.1);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    background-color: #CBCBCB;
}

.header{
    position: absolute;
    left: 25%;
    display: flex;
    align-items: center;
    margin-top: 35px;
    background: #FF6565; 
    box-shadow: 2px 4px 9.899999618530273px rgba(0, 0, 0, 0.25); 
    border-radius: 10px;
    width: 50%;
    height: var(--gaper);
    color: white;
    transition: opacity 1s;
    visibility: hidden;
}

.header span{
    margin: auto;
    font-size: calc(var(--index) * .8);
    text-align: center;
}

.main{ 
    height: 100vh;
    max-width: 100vw;
    display: flex;
}

.main_card, .main_table{
    background-color: white;
    width: 57%;
    height: 36%;
    min-height: 160px;
    margin: auto;
    box-shadow: 2px 4px 9.899999618530273px rgba(0, 0, 0, 0.25); 
    border-radius: var(--radiuser);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main_card_title{
    margin-bottom: var(--gaper);
}

.input-file span{
    cursor: pointer;
	outline: none;
	text-decoration: none;
    font-size: calc(var(--index) * .8);
    vertical-align: middle;
    color: white;
    text-align: center;
    background-color: #6346B4;
    border-radius: 5px;
    width: 33%;
    height: 13%;
    padding: 8px 20px;
    border: none;
    transition: background-color 0.2s;
}
.input-file input[type=file] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0;
}
.input-file:hover span, .main_header_btn:hover{
    background-color: #A88EF0;
}
.input-file:active span, .main_header_btn:active{
    background-color: #311F63;
}

/* Table styling */
.main_header{
    position: relative;
    left: 75%;
    top: 5%;
}

.main_header_btn{
    width: 169%;
    cursor: pointer;
	outline: none;
	text-decoration: none;
    font-size: calc(var(--index) * .8);
    /* vertical-align: middle; */
    color: white;
    text-align: center;
    background-color: #6346B4;
    border-radius: 5px;
    padding: 8px 20px;
    border: none;
    /* margin-bottom: 5%; */
    transition: background-color 0.2s;
}

.main_table{
    position: relative;
    border-radius: 0;
    border-top-left-radius: var(--radiuser);
    width: 170%;
    /* height: 90vh; */
    margin-top: calc(var(--gaper) * 1.5);
    box-shadow: none;
    justify-content: start;
    padding: 0;
}

.table{
    /* padding: 2%; */
    background-color: white;
    color: black; 
    width: 100rem;
    font-family: "Inter", sans-serif; 
    font-weight: 400; 
    text-align: left;
    border-collapse: collapse;
    border: 0;
    border-spacing: 0;
    border-top-left-radius: var(--radiuser);
}

th{
    border-right: 1px solid #C0C0C0;
    border-bottom: 2px solid #898989;
    font-size: calc(var(--index) * .8);
}

.address{
    width: 30%;
}
.name{
    width: 30%;
}

th.address{
    border-right: none;
}

td, th{
    padding: 15px 25px;
}
td{
    font-size: calc(var(--index) * .8);
    padding: 20px;
    border-bottom: 1px #C0C0C0 solid;
}
tr.row:hover{
    background: rgba(99, 70, 180, 0.25);
}
/* .main_row title::after{
    border-right: 1px solid #C0C0C0;
} */