.text-center {
    text-align: center;
}

.dummy-div-box {
    display: block;
}

.dummy-div,
.dummy-content {
    margin-bottom: 15px;
    background-color: #eeeeee;
    width: 100%;
    height: 80px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    animation: dumydisplay 2s infinite forwards;
    -webkit-animation: dumydisplay 2s infinite forwards;
}

@keyframes dumydisplay {
    0% {
        background-color: #eeeeee;
    }

    50% {
        background-color: #cccccc;
    }

    100% {
        background-color: #eeeeee;
    }
}

.user-profile-image {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.btn-none {
    color: var(--trcolor);
    text-decoration: none;
    font-size: 1rem;
    padding: 0px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.light-link {
    text-decoration: none;
    width: fit-content;
    padding: 0px 5px;
    background-color: #eee;
    color: var(--trcolor);
}

.btn-action {
    background-color: var(--prcolor);
    color: var(--secolor);
    font-size: 1rem;
    font-weight: normal;
    height: auto;
    width: fit-content;
    padding: 5px 15px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.btn-link {
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 35px;
    background-color: #333;
    color: var(--secolor);
    border: 2px solid var(--secolor);
    outline: none;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.btn-link:hover {
    background-color: var(--trcolor);
}

.modal {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.modal-trigger {
    width: fit-content;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.inner-modal {
    position: fixed;
    right: 35px;
    top: 35px;
    background-color: var(--secolor);
    width: 200px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    box-shadow: 0px 4px 8px -1px #00000099;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    display: none;
}

.inner-modal.active {
    display: flex;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-link {
    cursor: pointer;
    color: var(--prcolor);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.modal-link:hover {
    background-color: var(--trcolor);
    color: var(--secolor);
}

.heading-section {
    min-height: auto;
}

.section-heading {
    width: 100%;
    min-height: 100px;
    text-wrap: wrap;
    color: var(--prcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
}

.section-heading>h2 {
    font-size: 2rem;
    font-weight: 900;
}

/* Forms */
.out-input-box {
    width: fit-content;
}

.filter-select {
    width: 100%;
    height: 35px;
    font-size: 100%;
    padding: 8px;
    border: 1px solid lightgray;
    border-radius: 5px;
}

/* Forms */

.input-single {
    width: 100%;
    height: 35px;
    font-size: 100%;
    border: 1px solid #eeeeee;
    outline: none;
    padding: 7px;
}

.form-button {
    width: fit-content;
    padding: 5px 15px;
    background-color: #eeeeee;
    columns: var(--trcolor);
    border: none;
    outline: none;
    cursor: pointer;
}

.form-button:hover {
    background-color: #cccccc;
}

/* Tables */
.table-box {
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
}

table,
thead,
tr,
tbody {
    width: 100%;
}

thead {
    height: 45px;
}

th,
td {
    text-align: left;
    padding: 5px;
}

table.table-borders,
table.table-borders>thead,
table.table-borders>thead>tr,
table.table-borders>thead>tr>th,
table.table-borders>tbody,
table.table-borders>tbody>tr,
table.table-borders>tbody>tr>th,
table.table-borders>tbody>tr>td {
    border: 1px solid #eeeeee;
    border-collapse: collapse;
}