:root {
    --discriptive-text-size: 17px;
}

#title{
    font-size: 40px;
    text-align: center;
}


#topHeader{
    display: block; 
    margin: 0 auto;
    width: 80%;
    text-align: left;
    font-size: var(--discriptive-text-size);
    padding: 20px;
    border: 1px solid #ccc; 
    background-color: #f9f9f9; 
    
}

#errorPara{
    color: red;
    font-weight: bold;
    font-size:large
}
#inputBar{
    width: 100%;
    height: 30px;
    font-size: var(--discriptive-text-size);
}

.inputClickables{
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    border-radius: 500px;
    transition-property: background-color,border-color,color,box-shadow,filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    min-width: 0px;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 16px 30px 18px;
    color: #616467;
    box-shadow: inset 0 0 0 2px #616467;
    background-color: transparent;
    height: 48px;
}

#btnCheckBox{
    transform: scale(1.2); /* Scale the checkbox size */
  margin: 5px; /* Optional: Adjust spacing if needed */
}


#greyPara{
    padding-top: 20;
    color:rgb(114, 114, 114)
}

#parserdiv{
    display: block; 
    margin: 0 auto; 
    width:  80%;; 
    text-align: left;
    font-size: var(--discriptive-text-size);
    padding: 20px; 
    border: 1px solid #ccc; 
    background-color: #f9f9f9; 
}

#bottomNavigator{
    text-align: center;
    display: block;
    gap: 10px;
    
}
.arrow-button {
    width: 60px;
    height: 60px;
    background-color: #ccc;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}



.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.left-arrow .arrow {
    border-width: 10px 15px 10px 0;
    border-color: transparent white transparent transparent;
}

.right-arrow .arrow {
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
}

