* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
    color: black !important;
}

    a:hover {
        text-decoration: none;
    }

html {
    font-size: 62.5%;
}

:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F5F5F5;
    --addInputBtn: gray;
    --tableHead: transparent;
}

.show {
    visibility: visible !important;
    height: 150px !important;
    opacity: 1 !important;
}

.formClass {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    gap: 1.5rem;
}

    .formClass input, textarea {
        padding: .5rem;
        width: 80%;
        font-size: 1.4rem;
        border-radius: 5px;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .formClass textarea {
        height: 100%;
    }

.submit_btn button {
    font-size: 1.3rem;
}

.form_group > input {
    border: 1px solid lightgray;
    width: 100%;
}

.form_group > textarea {
    border: 1px solid lightgray;
    width: 100%;
}

.select_group > input {
    border: 1px solid lightgray;
    width: 100%;
}
/*delete button font size*/
.dlt_btns button {
    font-size: 1.3rem;
}

.content_body {
    background: var(--secondary-bg);
}

.submit_btn {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

    .submit_btn button {
        min-width: 15rem;
        font-size: 1.4rem;
    }

.input_group button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .7rem;
}

.action_btn button i {
    font-size: 1.2rem;
}

.search-box {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0;
}


/*table action buttons*/
.action_btn button {
    height: 2.3rem;
    width: 2.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (min-width:320px) and (max-width:767.98px) {
    .submit_btn button {
        min-width: auto;
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .submit_btn button {
        min-width: auto;
    }
}

/*Override base .btn*/
.btn {
    --bs-btn-font-size: 1.5rem;
    width: 9rem;
}