@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html
{
    font-size: 62.5%;
}

.contentContainer
{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
    padding: 2rem;
}

.flexTable
{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.flexTableRow
{
    display: flex;
    flex-direction: row;
    width: 100%;
    border-radius: 1rem;
    margin: 0.5rem;
    position: relative;
}

.flexTableTd
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin: 0.5rem;
    padding: 0.5rem;
    flex: 1;
}

.boxShadow
{
    box-shadow: 0 0 1rem black;
}

.flexTableTh
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin: 0.5rem;
    padding: 0.5rem;
    flex: 1;
    font-weight: bold;
}

.textbox
{
    border: 1px solid black;
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
}

.delBtnContainer
{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    right: 0.5rem;
    top: 0;
    
}

.delBtnContainer i
{
    color: rgb(200,0,0);
    cursor: pointer;
    transition: 0.3s;
}

.delBtnContainer i:hover
{
    color: rgb(255,0,0);
}

.addBtnContainer
{
    font-size: 3rem;
}

.addBtnContainer i
{
    color: rgb(100,100,255);
    cursor: pointer;
    transition: 0.3s;
}

.addBtnContainer i:hover
{
    color: rgb(0,0,255);
}