@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300&display=swap');

}


.deleteSubmit {
    position: relative;
    cursor: pointer;
    height: 50px;
    width: 49%;
    background: #777;
    transition: 0.2s ease-in-out;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
}

.deleteSubmit:hover {
    background: #333;
}

.saveSubmit {
    position: relative;
    cursor: pointer;
    height: 50px;
    width: 49%;
    background: #4cff53;
    transition: 0.2s ease-in-out;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.saveSubmit:hover {
    background: #30e336;
}

.contact-wrapper {
    width: 100%;
    height: 90%;
    position: absolute;
    background-color: #fff;
    border-radius: 20px;

}

.addCustomer {
    background: #0B0B3B;
    width: 50%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    position: absolute;
    padding: 15px;
    overflow: hidden;
    border-radius: 3px;
    transition: 0.2s ease-in-out;
}

.addCustomer:hover {
    background: #ff0000;
}


.addCustomer a {
    text-decoration: none;
    color: #ffffff;
    height: 100%;
    position: relative;
    padding: 50%;
    width: 50%;
}

table {
    position: relative;
    width: 95%;
    word-break: break-word;
	left: 50%;
    text-align: center;
    transform: translateX(-50%);
}

thead {
    background-color: #23aeee;
    color: #fff;
}

th, td {
    outline: 1px solid #dadce0;
    padding: 5px;
    text-align: left;
    font-size: 0.8vw;
    font-family: 'Roboto', sans-serif;
}

tbody tr {
    background: #dadce0;
}

tr:nth-child(even) {
    width: 100%;
    border-left: 1px solid #dadce0;
    border-right: 1px solid #dadce0;
    border-bottom: 1px solid #dadce0;
    background: white;
}


.contact-textbox {
    border: 0px solid #ffffff;
    width: 100%;
    height: auto;
    min-height: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 0px;
    position: relative;
    margin-bottom: 50px;
    padding: 25px;
}

input {
    border: 1px solid #dadce0;
    border-radius: 3px;
    width: 380px;
    padding: 10px;
    margin: 5px;
    font-family: 'Roboto', sans-serif;
}

select {
    border: 1px solid #dadce0;
    border-radius: 3px;
    padding: 5px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

p {
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.form-wrapper {
    display: inline-block;
    width: 95%;
    height: auto;
}

.formbox {
    padding: 10px;
    border: 1px solid #dadce0;
    border-radius: 3px;
    margin: 15px;
    position: relative;
    min-height: 300px;
    height: auto;
    min-width: 380px;
    background-color: #fff;
    display: inline-table;
}

.form-innercontent {
    display: flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);


}

.underline {
    border-bottom: 1px solid #dadce0;
}

.addcontact {
    position: relative;
    background-color: #fff;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    border-radius: 3px;

}

.heads {
    font-weight: bold;
    margin: 0px 0px 15px 0px;
}

