.body-app {
    margin: 0;
    height: 100vh;
    width: 100vw;

    background: linear-gradient(
            to bottom,
            rgba(92, 77, 66, 0.8) 0%,
            rgba(92, 77, 66, 0.8) 100%
        ),
        url("../img/bg-masthead.jpg");

    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
* {
    transition: background-color 0.3s  ease-in-out, transform 0.3s ease-in-out, margin 0.3s ease-in-out !important;    
}

a {
    color: white !important;
    text-decoration: none;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

/* card */
.colx2-card {
    height: inherit;
    font-size: 1.4rem;
    text-align: center;
}

.colx2-card-link {
    width: 16rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    margin: 0.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.714) !important;
    color: black !important;
    
}

.colx2-card-link:hover {
    background-color: rgba(0, 0, 0, 0.612) !important;
    color: white !important;
    transform: scale(1.1);
    margin: 0 1.5rem;
}

.colx2-card-link:hover .bi {
    color: white !important;
}

.brown-bg-color {
    background: rgba(255, 255, 255, 0.694) !important;
}

/* icons */
.bi {
    color: black;
}

.bi-lg {
    font-size: 6rem;
    text-align: center;
    margin: 0;
}
.bi-md {
    font-size: 2rem;
    text-align: center;
    margin: 0;
}

/* table */

.table-responsive {
    max-height: 30rem;
}

.tableFixHead {
    overflow: auto;
}

.tableFixHead thead {
    position: sticky;
    top: -1px;
    background-color: white;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* 
.table-header a {
    color: black !important;
} */
/* .scrollme {
    overflow-x: auto;
} */

.table-card {
    max-width: 120vh;
    min-width: 120vh;
    /* min-width: 60vh; */
}

td {
    white-space: nowrap;
}

td + .row-action_btns {
    width: 1%;
    padding: inherit 0.5rem;
}

/* th + .col-action_btns,
.row-action_btns {
    position: sticky;
    right: 0;
} */

.flex-cards {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bg-transparent-dark {
    background-color: rgba(0, 0, 0, 0.658);
}
.white-bg-color {
    border-radius: 0.5rem;
    position: relative;
    background-color: rgb(204, 204, 204);
}

.item-w-50 {
    min-width: 50%;
}
.close-btn {
    position: absolute;
    right: 1rem;
    top: 0.2rem;
    cursor: pointer;
    /* text-align: end; */
    width: 1rem;
    font-size: 1.5rem;
}

.error-template {
    display: flex;
    flex-direction: column;
    height: 20rem;
    align-items: center;
    justify-content: center;
}
