* {
    -webkit-user-select: none;
    user-select: none;
}

input,
textarea,
[contenteditable] {
    -webkit-user-select: text;
    user-select: text;
}

[contenteditable="true"]:active,
[contenteditable="true"],
[contenteditable="true"]:focus {
    border: none;
    outline: 0px solid transparent;
}

td:focus {
    outline: 0;
    box-shadow: none;
}

.form-control,
.form-select {
    background-color: transparent;
    margin-bottom: 2%;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0;
}

.page-item.active .page-link {
    background-color: #7f187f;
    border-color: #7f187f;
}

.page-link:hover {
    color: #7f187f;
}

.page-link {
    color: #7f187f;
}

:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

:focus,
.focus-visible:focus:not(:focus-visible) {
    outline: 0;
    box-shadow:
        0 0 0 .2rem #fff,
        0 0 0 .35rem #069;
}

.page-item:not(:first-child) .page-link {
    margin-left: 0;
}

.dataTable {
    width: 100% !important;
}

.previous:focus {
    outline: 0;
    box-shadow: none;
}

.page-link:visited {
    color: #7f187f;
    background-color: white;
}

.form-select {
    padding-left: 5px;
    font-size: 11px;
    background-color: #ffffff;
}

.form-select:active {
    background-color: #ffffff;
}

.form-select:focus {
    background-color: #ffffff;
}

.form-control {
    padding-left: 5px;
    font-size: 11px;
    background-color: #ffffff;
}

tr.odd td {
    background-color: #fcf8fd;
}

tr.even td {
    background-color: #ffffff;
}

@media screen and (min-width: 768px) {
    .table-tr-10 {
        min-width: 10vw !important;
        max-width: 10vw !important;
    }

    .table-tr-5 {
        min-width: 5vw !important;
        max-width: 5vw !important;
    }

    .table-tr-8 {
        min-width: 8vw !important;
        max-width: 8vw !important;
    }
}

.fixed-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.fixed-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.fixed-button:hover {
    opacity: 1;
}