﻿/* DM Sans Thin */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* DM Sans ExtraLight */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* DM Sans Light */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* DM Sans Regular */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* DM Sans Medium */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* DM Sans SemiBold */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* DM Sans Bold */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* DM Sans ExtraBold */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* DM Sans Black */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* DM Sans Bold Italic */
@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}


/* Define variáveis de cores e outras propriedades base */
:root {
    /* Cores */
    --pr-main-color: #115258;
    --pr-secundary-color: #10A8B4;
    --pr-primary: #007bff; /* Azul principal */
    --pr-secondary: #6c757d; /* Cinza secundário */
    --pr-success: #28a745; /* Verde sucesso */
    --pr-error: #dc3545; /* Vermelho erro */
    --pr-warning: #ffc107; /* Amarelo aviso */
    --pr-info: #17a2b8; /* Azul informação */
    --pr-light: #f8f9fa; /* Cinza claro */
    --pr-background: #f5f4f4;
    --pr-dark: #343a40; /* Cinza escuro */
    --pr-gray: #aea8a8;
    --pr-lightgray: #d2d2d2;
    /* Fontes */
    --pr-font: 'DM Sans', system-ui; /* Fonte padrão atualizada */
    --pr-font-size: 16px; /* Tamanho de fonte base */
    --pr-line-height: 1.5; /* Altura da linha base */
    /* Botões */
    --pr-btn-radius: 0.25rem; /* Raio dos botões */
    --pr-btn-padding: 0.5rem 1rem; /* Padding dos botões */
}

/* Estilos globais */
body {
    font-family: var(--pr-font) !important;
    font-size: var(--pr-font-size);
    line-height: var(--pr-line-height);
    color: var(--pr-dark);
    background-color: var(--pr-background) !important;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

p {
    color: var(--pr-gray);
}

a {
    color: var(--pr-primary);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Estilos para botões */
.btn {
    border-radius: var(--pr-btn-radius);
    padding: var(--pr-btn-padding);
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--pr-primary);
}

    .btn-primary:hover {
        background-color: #0056b3; /* Cor de hover ajustada */
    }

.btn-error {
    background-color: var(--pr-error);
}

    .btn-error:hover {
        background-color: #c82333; /* Cor de hover ajustada */
    }

/* Outros estilos específicos */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Botão Sign in with Google */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    border-radius: 11px;
    background-color: #f3f3f3;
    color: #000;
    font-weight: bold;
    padding: 13px 0px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .btn-google:hover {
        background-color: #f1f1f1;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    .btn-google img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

.account-background {
    border-radius: 0px 0px 0px 100px;
}

.account-column {
    padding: 10vh 6vw !important; /* Ajuste o padding usando unidades relativas */
    min-height: 100vh !important;
}

/* Media Queries para ajustes adicionais, se necessário */
@media (max-width: 768px) {
    .account-column {
        padding: 20vh 10vw; /* Ajuste para telas menores */
    }

    .pr-container {
        display: unset !important;
    }

    .pr-sidebar {
        width: 100% !important;
    }

    .pr-header {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .pr-header-title {
        order: 2;
    }

    .pr-header-icons {
        order: 1;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .account-column {
        padding: 30vh 15vw; /* Ajuste ainda mais para dispositivos móveis */
    }
}

.account-logo {
    height: 100px !important;
}

label {
    color: var(--pr-main-color);
    font-weight: 600;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="password"] {
    border-radius: 15px;
    padding: 15px;
    text-indent: 7px;
    border: 1px solid var(--pr-lightgray) !important;
    outline: none !important;
    box-shadow: unset !important;
    font-size: 13px;
}

    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="date"]::placeholder,
    input[type="password"]::placeholder {
        color: var(--pr-gray); /* Cor do placeholder */
        opacity: 1; /* Aumenta a opacidade, se necessário */
    }

.pr-asterisk {
    color: skyblue;
}

.pr-button {
    background-color: var(--pr-secundary-color);
    color: #fff;
    border: 0px;
    border-radius: 20px;
    font-weight: bold;
    padding: 20px 15px;
    text-decoration: none !important;
    transition: .25s ease-out;
}

.pr-button-danger {
    background-color: #f03333 !important;
}

    .pr-button-danger:hover {
        background-color: #b50202 !important;
    }

.pr-button:hover {
    background-color: var(--pr-main-color);
}

.or-bar {
    background-color: #d5d5d5;
    height: 0.5px;
    margin-top: 10px;
}

.or-text {
    background-color: #fff;
    margin-top: -13px !important;
    display: block;
    width: 48px;
    margin: 0 auto;
    color: var(--pr-gray);
    font-size: 12px;
}

.Title {
    font-size: 30px;
    color: var(--pr-main-color);
    font-weight: bold;
}

.SubTitle {
    font-size: 25px;
    color: var(--pr-main-color);
    font-weight: bold;
}

.ShortTitle {
    font-size: 20px;
    color: var(--pr-main-color);
    font-weight: bold;
}

.SmallText {
    font-size: 15px;
    color: var(--pr-main-color);
    font-weight: bold;
}

.SuperSmallText {
    font-size: 12px;
}

.TextGray {
    color: #d9d9d9;
}

.ShortTitleGray {
    color: #d9d9d9;
    font-size: 13px;
    font-weight: bold;
}

.pr-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .pr-checkbox input {
        display: none; /* Esconde a checkbox padrão */
    }

.pr-lightfont {
    font-weight: 600;
}

.pr-link {
    color: var(--pr-secundary-color);
    text-decoration: none;
    font-weight: 600;
}

.text-right {
    text-align: right;
}

.mt-30px {
    margin-top: 30px !important;
}

.p-20px {
    padding: 20px !important;
}

#combinedChart {
    width: 100%;
    height: 100%;
}

.chart-container {
    width: 100%;
    height: 260px;
}

.checkmark {
    width: 18px; /* Largura da checkbox personalizada */
    height: 18px; /* Altura da checkbox personalizada */
    border: 1px solid var(--pr-secundary-color); /* Borda */
    border-radius: 3px; /* Cantos arredondados */
    position: relative; /* Para posicionar o ícone */
    margin-right: 10px; /* Espaço entre checkbox e texto */
    background-color: white; /* Cor de fundo padrão */
    transition: background-color 0.3s, border-color 0.3s; /* Transições suaves */
}

.pr-checkbox input:checked + .checkmark {
    background-color: var(--pr-secundary-color); /* Cor de fundo quando selecionada */
}

    .pr-checkbox input:checked + .checkmark::after {
        content: '✔'; /* Ícone a ser exibido quando selecionada */
        position: absolute;
        left: 4px; /* Ajusta conforme necessário */
        top: 0px; /* Ajusta conforme necessário */
        color: white; /* Cor do ícone */
        font-size: 10px; /* Tamanho do ícone */
    }


footer {
    display: none;
}

.pr-container {
    display: flex;
    height: 100vh; /* Altura total da viewport */
}

.pr-sidebar {
    width: 250px; /* Ajuste conforme necessário */
    background-color: #f8f9fa; /* Cor de fundo do sidebar */
    position: fixed; /* Mantém o sidebar fixo */
    height: 100%; /* Altura total */
    overflow-y: auto; /* Adiciona rolagem se necessário */
}

.pr-content {
    margin-left: 250px; /* Espaço para o sidebar */
    flex-grow: 1; /* Faz o conteúdo ocupar o espaço restante */
    padding: 20px; /* Espaçamento interno */
}


#sidebar {
    transition: width 0.3s ease; /* Animação da largura da sidebar */
    overflow: hidden;
}

.pr-content {
    transition: margin-left 0.3s ease; /* Animação da margem esquerda do pr-content */
}


/* Para ecrãs entre 1000px e 1600px */
@media (min-width: 1000px) and (max-width: 1600px) {
    .pr-dashboard-graphic .chart-container {
        height: 30vh !important;
        margin-top: 125px !important;
    }

    .merchandise-dropi-image {
        height: 220px !important;
    }

    .pr-sidebar {
        width: 250px; /* Aumenta a largura da sidebar para 350px */
    }

    #map {
        height: 500px !important;
    }

    .second-block-aftermap {
        margin-top: 20px !important;
    }

    .menu-dropi-image {
        height: 85px !important;
    }
}

/* Para ecrãs acima de 1600px */
@media (min-width: 1600px) {
    .pr-sidebar {
        width: 250px; /* Sidebar volta para 250px em ecrãs grandes */
    }
}

.pr-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.pr-logo {
    width: 100px; /* Largura do logotipo */
}

.pr-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.pr-menu {
    list-style: none;
    padding: 0px;
}

    .pr-menu li {
        margin: 0px 0;
        transition: .14s ease-out;
    }

        .pr-menu li a {
            padding: 12px 10px;
        }

        .pr-menu li:hover {
            background-color: var(--pr-secundary-color) !important;
        }

    .pr-menu .active {
        background-color: var(--pr-main-color) !important;
    }

        .pr-menu li:hover a, .pr-menu .active a {
            color: #fff;
            font-weight: bold;
        }

        .pr-menu li:hover img, .pr-menu .active img {
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(133deg) brightness(98%) contrast(113%);
        }

    .pr-menu a {
        text-decoration: none;
        color: #333;
        display: flex;
        align-items: center;
        font-size: 13px;
        color: var(--pr-gray);
        font-weight: 400;
        letter-spacing: 0.3px;
        transition: .14s ease-out;
    }

        .pr-menu a img {
            height: 15px;
            filter: invert(85%) sepia(4%) saturate(258%) hue-rotate(326deg) brightness(81%) contrast(85%);
        }

.pr-icon-div {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--pr-background); /* Ajusta a cor de fundo como quiseres */
    border-radius: 50%;
    padding: 10px; /* Ajusta o padding conforme necessário */
    width: 50px;
    height: 50px;
}

    .pr-icon-div .pr-icon {
        filter: invert(20%) sepia(96%) saturate(416%) hue-rotate(137deg) brightness(97%) contrast(88%);
    }

.pr-icon {
    width: 15px; /* Largura dos ícones */
    height: 15px; /* Altura dos ícones */
    margin-right: 10px; /* Espaçamento entre o ícone e o texto */
    filter: invert(85%) sepia(4%) saturate(258%) hue-rotate(326deg) brightness(81%) contrast(85%);
}

.pr-search-icon {
    height: 12px !important;
    margin-left: 0 !important;
    font-weight: bold !important;
    filter: invert(20%) sepia(96%) saturate(416%) hue-rotate(137deg) brightness(97%) contrast(88%);
}


.pr-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
}

    .pr-dropdown-toggle:hover + .pr-dropdown-menu,
    .pr-dropdown-menu:hover {
        display: block; /* Mostrar dropdown ao passar o mouse */
    }

.pr-content {
    flex-grow: 1; /* Preencher o restante do espaço */
    padding: 20px;
}

.pr-header {
    display: flex;
    justify-content: space-between; /* Espaça os itens com o máximo possível entre eles */
    align-items: center; /* Alinha verticalmente os itens no centro */
    padding: 20px;
}

.pr-header-title {
    flex: 1; /* Faz com que o título ocupe o espaço restante à esquerda */
}

.pr-header-icons {
    background-color: #fff;
    padding: 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

    .pr-header-icons .pr-search {
        border-radius: 30px !important;
        padding: 10px 20px 10px 30px !important;
        border: 1px solid #f3f3f3 !important;
        background-color: #f3f3f3 !important;
        margin-right: 15px;
    }

.pr-search-container {
    position: relative;
    display: inline-block;
}

.pr-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.pr-search {
    padding-left: 40px; /* Ajusta este valor para o espaçamento do texto */
    text-indent: 10px; /* Espaçamento do texto depois do ícone */
    height: 36px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.pr-input-dashboard {
    padding: 10px 22px !important;
    border-radius: 40px !important;
    box-shadow: unset !important;
    outline: none !important;
    border: 1px solid #ccc !important;
    font-size: 12px !important;
}

.pr-dash-value {
    color: var(--pr-main-color) !important;
    font-size: 20px;
    font-weight: bold;
}

.pr-dash-field {
    font-size: 10px;
}

.pr-icon {
    width: 24px; /* Ajusta o tamanho dos ícones */
    height: 24px;
    margin-left: 10px; /* Espaçamento entre ícones */
}

.pr-profile {
    width: 32px; /* Ajusta o tamanho da foto de perfil */
    height: 32px;
    border-radius: 50%; /* Torna a foto redonda */
    margin-left: 10px;
}

.pr-lightgray {
    color: var(--pr-lightgray)
}

.pr-minos-horizontal-20px {
    margin: 0px;
}

.pr-dashboard-graphic {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.pr-chart-label {
    background-color: var(--pr-background);
    color: lightgray;
    border-radius: 5px;
    padding: 5px;
    font-weight: 500;
}

.pr-content-box {
    background-color: #fff; /* Cor de fundo suave */
    border-radius: 13px;
    padding: 20px; /* Espaçamento interno */
    height: 350px;
    position: relative;
}

.label1-text, .label2-text {
    font-size: 17px;
    text-transform: uppercase;
}

.icon-criancas {
    filter: invert(22%) sepia(74%) saturate(468%) hue-rotate(137deg) brightness(100%) contrast(93%);
}

.icon-familias {
    filter: invert(77%) sepia(68%) saturate(6672%) hue-rotate(150deg) brightness(96%) contrast(87%);
}

.label1-text {
    color: var(--pr-main-color);
    font-weight: bold;
}

.label2-text {
    color: var(--pr-secundary-color);
    font-weight: bold;
}

.label1-value {
    color: var(--pr-main-color);
    font-weight: bold;
}

.label2-value {
    color: var(--pr-secundary-color);
    font-weight: bold;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background-color: var(--pr-main-color);
}

    .leaflet-popup-content-wrapper h4 {
        color: #fff !important;
    }

#visitsChart {
    height: 100%; /* Altura fixa */
    width: 100%; /* Largura responsiva */
}

.menu-dropi-image {
    position: absolute;
    bottom: 20px;
    height: 150px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.pr-content-box .dropdown {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: #c7c7d1;
}

.dropdown .dropdown-arrow {
    filter: invert(95%) sepia(2%) saturate(1158%) hue-rotate(200deg) brightness(84%) contrast(94%);
    transform: rotate(90deg);
}

.month-dropdown-arrow {
    filter: invert(43%) sepia(15%) saturate(5269%) hue-rotate(146deg) brightness(94%) contrast(83%);
    transform: rotate(90deg);
}

.pr-content-box .info-container {
    display: flex;
    justify-content: space-around;
    margin-top: 23px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: #e1e1e1 0px 7px 18px -3px;
}

.info {
    align-items: center;
    font-size: 14px;
}

.dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-block;
}

.atividades {
    background-color: #159897; /* Cor para Atividades */
}

.recursos {
    background-color: #6fe7ff; /* Cor para Recursos */
}

.percentage {
    font-weight: bold;
    margin-left: 5px;
    color: #000;
}

#pieChartActivity {
    width: 170px !important; /* Ajusta a largura do gráfico */
    height: 180px !important; /* Ajusta a altura do gráfico */
    margin: 0 auto; /* Centraliza o gráfico */
}

.formation-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-icon {
    background-color: #e8eef4;
    border-radius: 50%;
    display: inline-block;
    padding: 5px;
    margin-right: 10px;
    font-size: 14px;
    color: #159897;
}

h4 {
    font-size: 18px;
    font-weight: bold;
    color: #215a80;
}

.formation-list {
    list-style-type: none;
    padding: 0;
}

    .formation-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

.formation-info {
    display: flex;
    flex-direction: column;
}

    .formation-info strong {
        color: #215a80;
        font-size: 16px;
    }

    .formation-info span {
        color: #a4a6b3;
        font-size: 14px;
    }

.action-btn {
    background-color: #159897;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    padding: 5px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-header {
    text-align: center;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

h4 {
    font-size: 18px;
    font-weight: bold;
    color: #215a80;
}

.calendar-controls {
    align-items: center;
}

.month-dropdown {
    background-color: #f0f4f8;
    border: none;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #159897;
    margin-right: 10px;
}

.year {
    font-size: 14px;
    color: #215a80;
}

.calendar {
    width: 100%;
    border-collapse: collapse;
}

    .calendar th {
        font-size: 14px;
        color: var(--pr-main-color);
        padding-bottom: 10px;
        padding: 0px 15px;
    }

    .calendar td {
        font-size: 14px;
        padding: 10px;
        text-align: center;
        color: #215a80;
    }

.prev-month, .next-month {
    color: #c7c7d1;
}

.current-month {
    color: #215a80;
}

.highlighted {
    background-color: #fafafa;
    color: var(--pr-secundary-color) !important;
    border-radius: 0;
}

.max-highlighted {
    background-color: #159897;
    color: white !important;
    border-radius: 20px 20px 20px 20px;
}

.calendar td:hover {
    background-color: #e8eef4;
    cursor: pointer;
    border-radius: 12px;
}

.calendar-header .calendar-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-options {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 10;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
}

    .dropdown-options li {
        padding: 8px 12px;
        cursor: pointer;
        color: #159897;
    }

        .dropdown-options li:hover {
            background-color: #f0f4f8;
        }

.month-dropdown, .year-dropdown {
    background-color: #f0f4f8;
    border: none;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #159897;
    margin-right: 10px;
    cursor: pointer;
    font-weight: bold;
}

.year-dropdown {
    background-color: unset !important;
}

.month-dropdown-arrow {
    margin-left: 5px;
}

.open {
    display: block;
}

.pr-button {
    background-color: var(--pr-secundary-color);
    padding: 10px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.pr-content-box .card-body {
    padding: 10px;
}

.text-underline {
    text-decoration: underline;
}

.invite-link {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 20px 10px;
    font-size: 17px;
}

.lh-10 {
    line-height: 150%;
}

.icon-content {
    padding: 13px;
    width: 55px;
    height: 54px;
    background-color: #f5f5f5;
    border-radius: 20px;
}


.pr-user-box {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

    .pr-user-box:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.pr-icon {
    width: 20px;
    height: 20px;
}

.pr-image-fit {
    object-fit: cover;
}

.pr-box-shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pr-content-box .card-body {
    padding: 15px;
}

.merchandise-dropi-image {
    object-fit: cover;
    height: 170px !important;
    width: 100% !important;
    border-radius: 10px;
}

.table .badge {
    display: inline-block;
    padding: 1em 3em !important; /* Ajusta o padding para dar mais espaço interno */
    font-size: 0.875rem !important; /* Tamanho da fonte */
    border-radius: 50px !important; /* Torna os badges redondos */
    color: white; /* Cor do texto */
    text-align: center; /* Centraliza o texto */
}

.table .badge-success {
    background-color: var(--pr-main-color); /* Cor de fundo para Concluída */
}

.table .badge-warning {
    background-color: #69c0ef; /* Cor de fundo para A Iniciar */
}

.table .badge-info {
    background-color: var(--pr-secundary-color); /* Cor de fundo para Em Andamento */
}

table.pr-content-box th,
table.pr-content-box td {
    padding: 12px 20px; /* Adiciona espaçamento superior/inferior e lateral */
}

table.pr-content-box {
    border-collapse: separate; /* Mantém o espaçamento entre células */
    border-spacing: 0; /* Define o espaçamento entre as células */
    width: 100%; /* Garante que a tabela use toda a largura disponível */
    height: auto;
}

    table.pr-content-box th {
        text-align: left; /* Alinha o texto dos cabeçalhos à esquerda */
        background-color: unset; /* Cor de fundo para o cabeçalho */
    }

    table.pr-content-box td {
        padding: 30px !important;
        vertical-align: middle; /* Centraliza verticalmente o conteúdo das células */
    }

/* Estilo da paginação */
.pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 1rem 0 !important;
}

.page-item {
    margin: 0 0.5rem !important;
}

.page-link {
    display: flex !important;
    align-items: center !important;
    padding: 0.5rem 1rem !important;
    color: var(--pr-main-color) !important; /* Cor do texto */
    text-decoration: none !important;
    border: 1px solid transparent !important;
    border-radius: 0.5rem !important; /* Bordas arredondadas */
    transition: background-color 0.2s, color 0.2s !important; /* Efeito suave */
    font-size: 1rem !important;
    outline: none !important;
}

    /* Efeito hover */
    .page-link:hover {
        background-color: var(--pr-main-color) !important; /* Cor de fundo ao passar o mouse */
        color: #fff !important; /* Cor do texto ao passar o mouse */
    }

    /* Estilo para ícones */
    .page-link .icon {
        width: 1rem !important; /* Ajusta o tamanho do ícone */
        height: 1rem !important; /* Ajusta o tamanho do ícone */
        margin-right: 0.5rem !important; /* Espaço entre ícone e texto */
        filter: invert(20%) sepia(96%) saturate(416%) hue-rotate(137deg) brightness(97%) contrast(88%);
    }

    .page-link:hover .icon {
        filter: invert(1);
    }

    .page-link:focus {
        outline: none !important;
        box-shadow: unset !important;
    }

/* Estilo para itens ativos */
.page-item.active .page-link {
    background-color: var(--pr-main-color) !important; /* Cor de fundo para o item ativo */
    color: #fff !important; /* Cor do texto para o item ativo */
    border: 1px solid var(--pr-main-color) !important; /* Borda para o item ativo */
    pointer-events: none !important; /* Desativa o clique no item ativo */
}

/* Estilo para itens desabilitados */
.page-item.disabled .page-link {
    color: var(--pr-secondary-color) !important; /* Cor do texto para item desabilitado */
    pointer-events: none !important; /* Desativa o clique em itens desabilitados */
}

.agent-search {
    gap: 10px;
}

.no-height {
    height: unset !important;
}

.low-radius {
    border-radius: 20px !important;
}

.material-image {
    border-radius: 20px;
    height: 210px !important;
    width: 100%;
    object-fit: cover;
}

.pr-content-box .card-img-top {
    /*height: 60%;
    object-fit: cover;*/
    object-position: bottom;
}

#materiaisList {
    padding: 0;
}

.material-item {
    cursor: pointer;
    padding: 5px;
    margin: 10px 0; /* Espaçamento entre os itens */
    border: 1px solid #ccc; /* Borda padrão */
    border-radius: 5px; /* Bordas arredondadas */
    transition: background-color 0.3s, transform 0.3s; /* Animação suave */
    list-style: none;
}

    .material-item:hover {
        background-color: #f0f0f0; /* Cor de fundo ao passar o mouse */
        transform: scale(1.02); /* Leve aumento no tamanho ao passar o mouse */
    }

    .material-item.selected {
        background-color: #10a8b4; /* Cor de fundo quando selecionado */
        color: white; /* Cor do texto quando selecionado */
        border: 1px solid #10a8b4; /* Borda azul quando selecionado */
        margin: 10px 0; /* Mantém o espaçamento entre os itens */
        border-radius: 20px; /* Bordas arredondadas quando selecionado */
        text-indent: 10px; /* Indentação do texto */
    }


.formacao-button {
    margin: 10px;
}

.active {
    background-color: #000 !important;
}

.flatpickr-wrapper {
    display: block;
}

    .flatpickr-wrapper .active {
        background-color: #fff !important;
    }

.dayContainer .selected {
    background-color: #10a8b4 !important;
    border-color: #10a8b4;
    color: #fff;
}

.c-pointer {
    cursor: pointer;
}

.dropdown-item:active {
    background-color: #10a8b4 !important;
}

.dropdown-item:hover {
    text-decoration: none !important;
}

.formations-table {
    max-height: 350px;
    height: auto !important
}

/* Estilos do Modal */
.modal {
    display: none; /* Inicialmente escondido */
    position: fixed;
    z-index: 1; /* Fica sobre outros conteúdos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro transparente */
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    font-size: 30px;
    cursor: pointer;
}

.modal-footer {
    text-align: right;
}


.modal-sidebar {
    margin: 0 !important;
    width: 60% !important;
    position: absolute !important;
    right: 0 !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    background-color: #fff;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center
}

    .modal-sidebar .modal-content {
        margin: 0;
        max-width: unset !important;
        overflow-x: hidden;
        overflow-y: auto;
        background-color: transparent;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .modal-sidebar .modal-header {
        border-bottom: none
    }

    .modal-sidebar .modal-footer {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-top: none
    }

    .modal-sidebar button.close {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1
    }

.modal.fade .modal-dialog.modal-sidebar {
    -webkit-transform: translate(25%,0);
    -ms-transform: translate(25%,0);
    -o-transform: translate(25%,0);
    transform: translate(25%,0)
}

.modal.show .modal-dialog.modal-sidebar {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0)
}

/* Bloco de comentário (tópico ou comentário) */
.comment-block {
    border: 1px solid #ddd;
    padding: 16px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* Estilo para o título do tópico/comentário */
.comment-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Estilo dos comentários subsequentes */
.comments-list .comment-block {
    margin-left: 20px; /* Indenta os comentários */
    border-left: 4px solid #007bff; /* Linha de destaque */
}

/* Formulário de comentário */
#addCommentForm {
    display: flex;
    flex-direction: column;
}

#commentContent {
    padding: 10px;
    border-radius: 5px !important;
    border: 1px solid #ccc;
    resize: none;
}


/* Estilo para o comentário */
.comment-item {
    border-bottom: 1px solid #ddd; /* Separador entre comentários */
    padding: 15px 20px;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

/* Estilo do cabeçalho do comentário (nome do autor e data) */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Nome do autor */
.author-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
}

.author-photo {
    height: 30px;
    width: 30px;
    border-radius: 100px;
}

/* Data do comentário */
.comment-date {
    font-size: 0.9em;
    color: #888;
}

/* Conteúdo do comentário */
.comment-content {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

.comment-item {
    background-color: #fff !important;
    border: 1px solid lightgray !important;
    padding: 20px !important;
}


    /* Efeito ao passar o mouse por cima do comentário */
    .comment-item:hover {
        background-color: #e9e9e9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

.blue-text {
    color: var(--pr-secundary-color);
}

.bg-dropi {
    background-color: var(--pr-secundary-color);
}

.implementation-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .implementation-card h3 {
        margin: 0;
        font-size: 1.2em;
    }

    .implementation-card p {
        font-size: 1em;
        color: #333;
    }

.toggle-details {
    background-color: #007bff;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .toggle-details:hover {
        background-color: #0056b3;
    }

.details {
    margin-top: 15px;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
}

.tab-content .active {
    background-color: unset !important;
}

.nav-item .active {
    background-color: unset !important;
    border-bottom: 4px solid #10a8b4 !important;
    font-weight: bold;
    letter-spacing: -0.5px;
    color: var(--pr-secundary-color) !important;
}

.nav-tabs .nav-link {
    color: var(--pr-main-color);
    border-left: 0px !important;
    border-top: 0px !important;
    border-right: 0px !important;
    text-decoration: none !important;
}

    .nav-tabs .nav-link:hover {
        color: var(--pr-secundary-color);
        font-weight: bold;
        border-bottom: 4px solid #10a8b4 !important;
        letter-spacing: -0.5px;
    }

#training-details {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #fff;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: none;
}

    #training-details h3 {
        margin-top: 0;
        font-size: 20px;
        color: #333;
    }

    #training-details p {
        margin-bottom: 10px;
        color: #444;
        font-size: 14px;
    }

    #training-details img {
        margin-top: 10px;
        border-radius: 8px;
        max-height: 200px;
        object-fit: cover;
        width: 100%;
    }

#training-details-close {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 56px;
    color: #4dc0c7;
    cursor: pointer;
    transition: color 0.3s;
}

    #training-details-close:hover {
        color: #000;
    }

/* Fundo escuro por trás */
#training-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.community-button {
    background-color: #10a8b4;
    color: #fff;
    padding: 10px;
    text-decoration: none !important;
    border-radius: 10px;
    transition: .14s ease-out;
}

    .community-button:hover {
        background-color: var(--pr-main-color);
    }

.icon-map {
    height: 50px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(244deg) brightness(100%) contrast(99%);
}

#minhasFormacoes {
    background-color: #fff !important;
    padding: 20px;
}

    #minhasFormacoes .training-image {
        width: 200px;
        height: 110px;
        object-fit: cover;
    }

    #minhasFormacoes .training-content {
        padding-left: 30px;
    }

        #minhasFormacoes .training-content img {
            padding-right: 5px;
            height: 13px;
        }

        #minhasFormacoes .training-content .in {
            filter: brightness(0) saturate(100%) invert(68%) sepia(49%) saturate(4164%) hue-rotate(140deg) brightness(84%) contrast(87%);
        }

        #minhasFormacoes .training-content .done {
            margin-top: -2px;
            filter: brightness(0) saturate(100%) invert(43%) sepia(66%) saturate(1190%) hue-rotate(148deg) brightness(98%) contrast(87%);
        }

        #minhasFormacoes .training-content small {
            margin-top: 15px;
        }

    #minhasFormacoes .badge {
        margin-top: 20px;
        background-color: #ededed !important;
        color: #000;
        font-weight: 500 !important;
    }

    #minhasFormacoes .table-responsive {
        overflow: hidden !important;
    }

#modalInscricoes #closeInscricoes {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    transition: .14s ease-out;
    cursor: pointer;
}

    #modalInscricoes #closeInscricoes:hover {
        color: var(--pr-secundary-color);
    }

#registration-course #email {
    color: gray;
}

#registration-course {
    display: flex;
    gap: 10px;
}

/* Timeline Horizontal */
.timeline-container {
    overflow-x: auto;
    padding: 5px 50px 10px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.timeline {
    display: flex;
    /*  align-items: center;*/
    position: relative;
    padding: 20px 0;
    gap: 0;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 35px;
        left: 0;
        height: 4px;
        width: 100%;
        background-color: var(--pr-secundary-color);
        z-index: 1;
    }

.timeline-item {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
}

    .timeline-item .dot {
        width: 16px;
        height: 16px;
        background-color: var(--pr-main-color); /* nova cor */
        border-radius: 50%;
        margin: 0 auto;
        z-index: 3;
        margin-top: 9px;
    }


    .timeline-item .label {
        margin-top: 8px;
        font-size: 14px;
        color: #444;
    }

        .timeline-item .label span {
            display: block;
            font-size: 12px;
            color: #666;
        }


    /* Estilo dos botões dentro da timeline */
    .timeline-item .buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

        .timeline-item .buttons .btn {
            /*padding: 5px 10px;*/
            font-size: 12px;
        }

    /* Ajuste dos botões para não ocupar muito espaço */
    .timeline-item .btn-primary {
        background-color: var(--pr-secundary-color);
        border-color: var(--pr-secundary-color);
    }

        .timeline-item .btn-primary:hover {
            background-color: var(--pr-main-color);
            border-color: var(--pr-main-color);
        }

    .timeline-item .btn-secondary {
        background-color: var(--pr-main-color);
        border-color: var(--pr-main-color);
    }

        .timeline-item .btn-secondary:hover {
            background-color: #000;
            border-color: #000;
        }

#user_form .input-group-text {
    border-right: 0px;
    background-color: #fff;
    border-radius: 15px 0px 0px 15px;
    border: 1px solid var(--pr-lightgray) !important;
    color: var(--pr-main-color);
    padding-right: 2px;
}

#user_form #linkedin {
    border-left: 0px !important;
    border-radius: 0px 15px 0px 0px !important;
    padding-left: 0px !important;
}

.lni-trash-3 {
    font-size: 14px;
}

.card .bg-opacity-20 {
    opacity: 1;
    background-color: rgb(33 37 41 / 13%) !important;
}

.card {
    height: 500px !important;
}

@media (max-width: 1665px) {
    .card {
        height: 400px !important;
    }
}

@media (max-width: 1446px) {
    .card {
        height: 300px !important;
    }
}

@media (min-width: 1905px) {
    .card {
        height: 500px !important;
    }
}


.bg-opacity-20 p {
    color: var(--pr-secundary-color) !important;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem; /* Adiciona algum espaçamento entre o label e os checkboxes */
}

.form-check {
    display: block; /* Faz com que cada checkbox ocupe uma linha separada */
    margin-bottom: 0.5rem; /* Espaçamento entre os checkboxes */
}

    .form-check span {
        padding-top: 4px;
        font-weight: bold;
    }

.form-check-inline {
    display: flex !important; /* Mantém os checkboxes como inline, se necessário */
    margin-right: 1rem; /* Espaçamento entre os checkboxes se mantiveres o layout inline */
}

/* Estilo para o checkbox */
.form-check-input {
    cursor: pointer;
    width: 25px !important;
    height: 25px !important;
    border-radius: 4px !important;
    border: 2px solid #007bff; /* Cor da borda */
    background-color: #fff; /* Cor de fundo quando desmarcado */
    transition: all 0.3s ease; /* Suaviza a transição de hover e checked */
    margin-right: 0.75rem; /* Espaço entre o checkbox e o texto */
}

    .form-check-input:checked {
        background-color: var(--pr-main-color) !important; /* Cor de fundo quando marcado */
        border-color: var(--pr-main-color) !important; /* Cor da borda quando marcado */
    }

    .form-check-input:focus {
        background-color: var(--pr-main-color) !important;
        box-shadow: unset !important;
    }

/* Estilo do texto ao lado do checkbox */
.form-check-label {
    font-size: 1rem;
    color: #555;
    transition: color 0.3s ease;
}

.form-check:hover .form-check-label {
    color: #007bff; /* Muda a cor do texto quando o checkbox é hover */
}

/* Estilo para quando o checkbox estiver em foco */
.form-check-input:focus + .form-check-label {
    color: #007bff; /* Muda a cor do texto quando o checkbox está em foco */
}

/* Estilo para o checkbox em estado desmarcado */
.form-check-input:disabled {
    background-color: #e9ecef;
    border-color: #ccc;
}

    .form-check-input:disabled + .form-check-label {
        color: #6c757d; /* Texto cinza para desabilitados */
    }

/* Estilo para o item de formação */
.training-item {
    position: relative;
    margin-bottom: 20px;
}

    /* Estilo do botão "Ver mais" para o efeito de modal */
    .training-item .btn-info {
        margin-top: 10px;
    }

    /* Estilo do colapso, tornando-o um modal */
    .training-item .collapse {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 600px;
        background-color: white;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 1050; /* Coloca acima de outros elementos */
        display: none; /* Inicialmente escondido */
        overflow-y: auto; /* Caso o conteúdo seja maior que o modal */
    }

        /* Ao exibir o colapso, ele se comporta como um modal */
        .training-item .collapse.show {
            display: block;
        }

        /* Estilo para o fundo escurecido ao abrir o modal */
        .training-item .collapse::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1040; /* Fica abaixo do modal */
        }

        /* Fechar o modal ao clicar fora (dentro da área escurecida) */
        .training-item .collapse.show::before {
            cursor: pointer;
        }

    /* Estilo do botão de fechar, caso você queira adicionar */
    .training-item .close-modal {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        cursor: pointer;
    }


#implementationsBody td {
    padding: 30px 15px !important;
    vertical-align: middle;
}

/* Sidebar mobile: só visível em ecrãs pequenos */
.pr-sidebar-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: #fff !important;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1050;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    display: none;
}

    /* Mostrar o menu quando ativo */
    .pr-sidebar-mobile.active {
        left: 0;
    }

    /* Header com logo e botão fechar */
    .pr-sidebar-mobile .pr-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

/* Ícone do botão de menu (hambúrguer) no topo fixo */
.pr-mobile-menu-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1060;
    background-color: #fff;
    border: 1px solid var(--pr-main-color) !important;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    display: none;
}

    .pr-mobile-menu-toggle i {
        color: var(--pr-main-color) !important;
    }

    .pr-mobile-menu-toggle:hover {
        background-color: var(--pr-main-color) !important;
    }

        .pr-mobile-menu-toggle:hover i {
            color: #fff !important;
        }

/* Lista de itens do menu */
.pr-sidebar-mobile .pr-menu {
    margin-top: 30px;
}

    .pr-sidebar-mobile .pr-menu li {
        margin-bottom: 15px;
    }

    .pr-sidebar-mobile .pr-menu a {
        display: flex;
        align-items: center;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        transition: color 0.2s;
    }

        .pr-sidebar-mobile .pr-menu a:hover {
            color: #007bff;
        }

    /* Espaço entre ícone e texto */
    .pr-sidebar-mobile .pr-menu i {
        margin-right: 10px;
        font-size: 18px;
    }

/* Imagem do Dropi */
.menu-dropi-image {
    width: unset !important;
    margin-top: 30px;
}

/* Só mostrar a sidebar mobile em ecrãs pequenos */
@media (min-width: 768px) {

    .pr-mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .checkbox-group-3cols {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .pr-content-box {
        height: unset !important;
    }
}

@media (min-width: 768px) and (max-width: 958px) {
    .checkbox-group-3cols {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 1200px) {
    #topicsList {
        width: 100%;
    }

    .community-section {
        padding: 0 !important;
    }

        .community-section button {
            width: 100%;
            margin-bottom: 10px;
        }

    .pr-sidebar-mobile {
        display: block;
    }

    .pr-mobile-menu-toggle {
        display: block;
    }

    .pr-content {
        margin-left: 0px !important;
    }

    .pr-sidebar {
        display: none;
    }

    .pr-header-icons {
        display: none;
    }

    #criarImplementacaoModal {
        z-index: 999999999;
    }

        #criarImplementacaoModal .modal-dialog {
            width: 100% !important;
        }

    .timeline {
        flex-direction: column;
    }

        .timeline::before {
            display: none !important;
        }

        .timeline .dot {
            display: none !important;
        }

        .timeline br {
            display: none;
        }

    .timeline-item {
        margin-bottom: 35px;
    }
}

.pr-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

    .pr-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.pr-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--pr-lightgray);
    transition: .4s;
    border-radius: 34px;
}

    .pr-slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

.pr-switch input:checked + .pr-slider {
    background-color: var(--pr-main-color);
}

    .pr-switch input:checked + .pr-slider:before {
        transform: translateX(24px);
    }

#mainImage {
    height: 0px;
}


/* Container que adiciona scroll horizontal para tabelas */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* scroll suave no iOS */
}

    /* Estilo básico para a tabela */
    .table-responsive table {
        width: 100%;
        border-collapse: collapse;
    }

/* Para telas pequenas e iPad (até 1024px), força a largura mínima para provocar scroll se necessário */
@media (max-width: 1024px) {
    .table-responsive table {
        min-width: 600px; /* força scroll horizontal se tabela for larga */
    }
}

/* Estilo para células */
.table-responsive th,
.table-responsive td {
    padding: 8px 12px;
    text-align: left;
    white-space: nowrap; /* evita quebra dentro da célula */
}

/* Zebra stripes para melhor leitura */
.table-responsive tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Cabeçalho fixo no topo durante scroll vertical */
.table-responsive thead th {
    position: sticky;
    top: 0;
    background: white; /* importante para o cabeçalho não ficar transparente */
    z-index: 1;
}

#registration-course img {
    max-width: 40px;
    max-height: 40px;
}

.comment-block {
    height: fit-content !important;
}

.pagination .pr-button {
    padding: 0px 5px;
    margin: 2px;
    min-width: 30px;
}

.pr-button-active {
    background-color: white;
    color: var(--pr-secundary-color);
}
