.breadcrumb {
    border-radius: 5px;
}

.btn-icon {
    border-radius: 100%;
    font-size: 1.25rem;
    padding: 0.375rem
}

.card .card-title {
    text-transform: inherit;
}

.page-body-wrapper {
    padding-top: 90px;
}

.form-select {
    color: var(--bs-body-color) !important;
    font-size: 14px;
}

.form-filter {
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 5px;
}

textarea.form-control {
    height: inherit !important;
}

label.error {
    color: #F95F53 !important;
    font-weight: 400;
    margin-top: 5px;
    display: block;
}

.pagination-container {
    font-size: 14px;
}

/* Pagination flat & success estilo customizado */
.pagination-flat {
    /* Remove padding padrão do Bootstrap */
    margin-bottom: 0;
}

.pagination-flat .page-item {
    margin: 0 3px;
    /* espaçamento entre itens */
}

.pagination-flat .page-link {
    border: none;
    /* remove borda padrão */
    background: transparent;
    /* fundo transparente por padrão */
    color: #0d6efd;
    /* cor padrão dos links (azul) */
    font-weight: 500;
    padding: 0;
    /* padding resetado para criar círculo uniforme */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* Ícones (setas, etc.) dentro dos links */
.pagination-flat .page-link>span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Hover/Focus dos links */
.pagination-flat .page-link:hover,
.pagination-flat .page-link:focus {
    background: rgba(13, 110, 253, 0.1);
    /* leve destaque ao passar o mouse */
    border-radius: 50%;
    text-decoration: none;
}

/* Item ativo */
.pagination-flat .page-item.active .page-link {
    background: #26c6da;
    /* teal */
    color: #fff;
    border-radius: 50%;
}

/* Itens desabilitados */
.pagination-flat .page-item.disabled .page-link {
    color: #adb5bd;
}

.height-card-print {
    min-height: 92.375vh !important;
}

.input.radio {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.input.radio label input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.input.radio label input:hover {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.input.radio label input:checked {
    border-color: #0d6efd;
    background-color: #0d6efd;
}

.input.radio label input:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.input.radio label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
}


.home-tab .table-sorter-wrapper .btn {
    border: none;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0.375rem; /* mesmo padding dos ícones nas listas */
    color: #fff;
}
.home-tab .table-sorter-wrapper .btn-icon {
    border-radius: 100%;
    padding: 0.75rem 0.625rem;
}
.home-tab .table-sorter-wrapper .btn-icon > span {
    font-size: 1.25rem;
}
