:root {
    --bs-table-ct-color: #fff;
    --bs-table-ct-bg: #1666bf;
    --bs-table-ct-border-color: #4d5154;
    --bs-table-ct-striped-bg: #2c3034;
    --bs-table-ct-striped-color: #fff;
    --bs-table-ct-active-bg: #373b3e;
    --bs-table-ct-active-color: #fff;
    --bs-table-ct-hover-bg: #323539;
    --bs-table-ct-hover-color: #fff;
}

.alert-container {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 1050;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: #fff;
    box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.1);
}

header img {
    width: auto;
    height: 2.5rem;
}

header .ct-header {
    color: #1666bf;
    font-size: 1.75rem;
}

.ct-ff {
    font-family: 'Poppins', sans-serif;
}

.ct-card {
    width: auto;
    margin: auto;
    border-radius: 2rem;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.15), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.2);
}

.ct-card-title {
    padding: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 2rem 2rem 0 0;
    color: white;
    background-color: #1666bf;
}

.ct-card-subtitle {
    padding: 0.75rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    font-size: 1rem;
    border-radius: 2rem 2rem 0 0;
    background-color: #ccc;
}

.ct-card-body {
    padding: 1.75rem 2rem;
}

.ct-msg-alert {
    color: var(--bs-danger);
    display: flex;
    text-justify: inter-word;
    justify-content: center;
    font-weight: bold;
}

.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Monserrat', sans-serif;
}

.table-ct {
    width: 100%;
    font-size: small;
    border-radius: 12px;
}

.table-ct>:not(caption)>*>* {
    padding: .5rem .5rem;
}

.table-ct thead tr {
    text-align: center;
    color: var(--bs-table-ct-color);
    background-color: var(--bs-table-ct-bg);
}

.table-ct tbody tr {
    background-color: #f5f5f5;
}

.table-ct tbody tr:not(:first-child) td {
    border: none;
    border-top: 1px solid #ccc;
}

.table-ct tbody tr:first td {
    border-bottom: none;
}

.table-ct tbody tr td:not(:first-child),
.table-ct tfoot tr th:not(:first-child) {
    text-align: right;
}

.table-ct tbody tr td:first-child,
.table-ct tfoot tr th:first-child {
    padding-left: 0.75rem;
    font-weight: bold;
}

.table-ct tfoot tr {
    color: var(--bs-table-ct-color);
    background-color: #0da2b8;
}

.tr-nc {
    font-weight: bold;
    color: white;
    background-color: var(--bs-danger) !important;
}

.table-ct thead th:first-child {
    border-top-left-radius: 0.75rem;
}

.table-ct thead th:last-child {
    border-top-right-radius: 0.75rem;
}

.table-ct tfoot tr:last-child th:first-child {
    border-bottom-left-radius: 0.75rem;
}

.table-ct tfoot tr:last-child th:last-child {
    border-bottom-right-radius: 0.75rem;
}

.btn-ct {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0da2b8;
    --bs-btn-border-color: #0da2b8;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0a7f95;
    --bs-btn-hover-border-color: #086f80;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #086f80;
    --bs-btn-active-border-color: #045a65;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0da2b8;
    --bs-btn-disabled-border-color: #0da2b8;
    
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1520px;
    }
}