.button {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.375rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;


    /* primary */
    --bs-btn-color: #fff;
    --bs-btn-bg: #31463b;
    --bs-btn-border-color: #31463#ffffff;
    --bs-btn-hover-bg: #31463b;
    --bs-btn-hover-border-color: #31463b;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #31463b;
    --bs-btn-active-border-color: #31463b;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #31463b;
    --bs-btn-disabled-border-color: #31463b;
    border: 2.3px solid #31463b !important;

}

.button:hover {
    border: 2.3px solid #31463b !important;
    color: #31463b !important;
    background-color: #ffffff !important;
}

.table-responsive>table {
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: var(--bs-body-color);
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: var(--bs-table-color);
    vertical-align: top;
    border-color: var(--bs-table-border-color);

}

.table-responsive>table>thead {
    vertical-align: bottom;
}

.table-responsive>table> :not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table-responsive>table>tbody {
    vertical-align: inherit;
}

.patinator {
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: space-between;
}

.float-right {
    float: right !important;
}

a {
    color: #5b836e;
}

.btn-primary {
    background-color: #31463b;
    color: #fff;
    border: 2.3px solid #31463b !important;
}

.btn-primary:hover,
.btn-primary:active {
    color: #31463b !important;
    background-color: #ffffff !important;
}

.form-control {
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: unset;
    /* box-shadow: 0 0 3px 1px #31463b; */
}

/* Miligram Table */
@media screen and (max-width: 640px) {
    table {
        border-spacing: 0;
        display: flex;
        width: 100%
    }

    table thead {
        border-right: solid 0.1rem #e1e1e1
    }

    table thead td,
    table thead th {
        padding-left: 0
    }

    table thead td:first-child,
    table thead th:first-child {
        padding-left: 0
    }

    table thead td:last-child,
    table thead th:last-child {
        padding-right: 1.2rem
    }

    table tbody {
        display: flex;
        overflow-x: auto;
        white-space: nowrap
    }

    table tbody tr {
        border-right: solid 0.1rem #e1e1e1
    }

    table tbody tr:last-child {
        border-right: none
    }

    table td,
    table th {
        display: block
    }

    table td:first-child,
    table th:first-child {
        padding-left: 1.2rem
    }

    table td:last-child,
    table th:last-child {
        padding-right: 1.2rem
    }
}