/* --- Reset e Configurações Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden; /* ADICIONADO: Impede a rolagem da página inteira */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F4F5FB;
    color: #4a4a4a;
    -webkit-font-smoothing: antialiased;
    font-size: 14px; /* Fonte base ligeiramente menor */
}

a {
    transition: opacity 0.2s ease-in-out;
}

a:hover {
    opacity: 0.8;
}


.sidebar-nav a svg {
    margin-right: 7px;
}

/* --- Estrutura Principal (Dashboard, Configurações, etc.) --- */
.container {
    display: flex;
    width: 100%;
    height: 100vh; /* MODIFICADO: Garante que o container ocupe toda a altura da tela */
}

/* --- Barra Lateral (Sidebar) --- */
.sidebar {
    width: 260px;
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
    height: 100vh; /* ADICIONADO: Garante que a sidebar ocupe toda a altura */
    overflow-y: auto; /* ADICIONADO: Permite rolagem interna na sidebar se o menu for longo */
}

.sidebar-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.sidebar-header .logo {
    width: 40px;
    height: 40px;
    background-color: #007EC4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 15px;
}

.sidebar-header .logo-text h2 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.sidebar-header .logo-text p {
    font-size: 11px;
    color: #888;
}

.sidebar-nav {
    flex-grow: 1;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 11px 15px; /* Padding ajustado */
    text-decoration: none;
    color: #555;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s, opacity 0.2s ease-in-out;
    font-size: 14px; /* Fonte do menu */
}

.sidebar-nav a:hover,
.sidebar-nav li.active a {
    background-color: #e9f2ff;
    color: #007EC4;
}

.sidebar-nav a i {
    margin-right: 15px;
    width: 18px; /* Ícone do menu menor */
    height: 18px;
}

.badge {
    margin-left: auto;
    background-color: #FCB958;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.sidebar-nav li.active .badge {
    background-color: #007EC4;
    color: #fff;
}

.sidebar-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #555;
    margin-right: 10px;
}

.user-info strong {
    display: block;
    font-size: 11px;
    color: #333;
}

.user-info p {
    font-size: 11px;
    color: #888;
}

/* --- Conteúdo Principal (Main Content) --- */
.main-content {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto; /* Esta linha agora funciona como esperado, criando a rolagem aqui */
}

.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-header {
    display: none;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
}

.search-bar i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.header-icons .notification {
    position: relative;
    cursor: pointer;
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.page-header h1 {
    font-size: 26px; /* Fonte do título da página */
    font-weight: 600;
    color: #2c3e50;
}

.page-header p {
    font-size: 15px; /* Fonte do subtítulo da página */
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* --- Estilos da Página de Login (index.php) --- */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eef0f3;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-direction: column;
    text-align: center;
}

.login-header .logo {
    width: 50px;
    height: 50px;
    background-color: #007EC4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.login-header h1 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.login-header p {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #007EC4;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #555;
}

.checkbox-group input {
    margin-right: 8px;
}

.forgot-password a {
    color: #007EC4;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background-color: #007EC4;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-login:hover {
    background-color: #0056b3;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}


/* --- Estilos da Página de Dashboard (dashboard.php) --- */
.filters-bar {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eef0f3;
    margin-bottom: 25px;
}

.filters-bar h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.filters-bar h3 i {
    margin-right: 10px;
}

.filters-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: stretch; /* Garante que os itens tenham a mesma altura */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0; /* Removido padding para controle total */
}
.filter-group.search-group {
    padding: 0;
}
.filter-group.search-group i {
    padding-left: 15px;
    color: #888;
    margin-right: 10px;
    width: 18px; /* Tamanho do ícone */
    height: 18px; /* Tamanho do ícone */
    align-self: center; /* Centraliza o ícone verticalmente */
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
}
.filter-group.search-group input {
    padding-left: 0;
    border-right: none;
}

.filter-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 40px;
}

.btn-search {
    padding: 12px 20px;
    border: none;
    background-color: #007EC4;
    color: white;
    border-radius: 0 7px 7px 0;
    cursor: pointer;
    font-weight: 500;
    flex-shrink: 0; /* Impede que o botão encolha */
}
.btn-search:hover {
    background-color: #0056b3;
}

.results-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.manifestation-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eef0f3;
    margin-bottom: 20px;
}

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.card-header-info {
    flex-grow: 1;
}

.card-header-info p {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.card-header-info .tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 15px;
    margin-left: 0;
    text-transform: capitalize;
}

.card-options a {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    text-decoration: none;
}

.manifestation-card h2 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.manifestation-card .description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.detail-group h3 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.detail-group h3 i {
    margin-right: 8px;
    color: #007EC4;
}

.detail-group p {
    color: #666;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.empty-state {
    text-align: center;
    padding: 50px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #eef0f3;
}
.empty-state i {
    width: 48px;
    height: 48px;
    color: #ccc;
    margin-bottom: 15px;
}
.empty-state p {
    font-size: 16px;
    color: #888;
}

/* --- Estilos de Tags de Status e Tipo --- */
.tag-reclamacao { background-color: #ffe0e0; color: #c0392b; }
.tag-sugestao { background-color: #d6f5d6; color: #27ae60; }
.tag-elogio { background-color: #e0f7fa; color: #00796b; }
.tag-denuncia { background-color: #f2e0ff; color: #8e44ad; }
.tag-pendente { background-color: #fff0c2; color: #f39c12; }
.tag-concluida { background-color: #d4edda; color: #155724; }
.tag-cancelada { background-color: #f8d7da; color: #721c24; }
.tag-desconhecido { background-color: #e9ecef; color: #495057; }
.tag-insatisfacao-de-atendimento { background-color: #d1e7ff; color: #0d6efd; }
.tag-informacao { background-color: #cce5ff; color: #004085; } /* Nova Tag */
.tag-critica { background-color: #e2d9f3; color: #563d7c; } /* Nova Tag */


/* --- Estilos da Página de Configurações (configuracoes.php) --- */
.settings-card {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid #eef0f3;
    margin-bottom: 25px;
}

.settings-card h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    color: #333;
}

.settings-card h2 i {
    margin-right: 12px;
    color: #007EC4;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group .input-display {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.notification-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notification-item-text strong {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.notification-item-text p {
    font-size: 13px;
    color: #777;
}

/* Estilo do Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #007EC4;
}

input:checked+.slider:before {
    transform: translateX(20px);
}

/* --- Estilos da Página de Edição (editar-manifestacao.php) --- */
.page-header.edit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-title a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
}

.header-title p {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 2px;
    margin-bottom: 0;
}

.header-tags .tag {
    display: inline-block;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-left: 10px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eef0f3;
    margin-bottom: 25px;
}

.card h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.card h2 i {
    margin-right: 15px;
    color: #007EC4;
}

.manifestation-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.manifestation-details .description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.manifestation-details .meta-info {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.attachment-list .attachment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.attachment-item .file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.attachment-item .file-size {
    font-size: 12px;
    color: #fff;
    background-color: #6c757d;
    padding: 3px 8px;
    border-radius: 5px;
}

.attachment-item a {
    color: #555;
}

.message-history .message-item {
    margin-bottom: 20px;
}

.message-item .author {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.message-item .date {
    font-size: 12px;
    color: #888;
    margin-left: 10px;
}

.message-item .message-content {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-top: 5px;
}

.action-list .action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.action-list .action-item:hover {
    background-color: #f8f9fa;
}

.citizen-details .detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.citizen-details .detail-item i {
    color: #007EC4;
}

.category-tag {
    background-color: #e9f2ff;
    color: #007EC4;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

.form-group textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    margin-bottom: 10px;
}
.form-group textarea:focus {
    border-color: #007EC4;
}


.response-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.response-options .radio-group {
    display: flex;
    gap: 15px;
    font-size: 14px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: #28a745;
    color: #fff;
}
.btn-primary:hover {
    background-color: #218838;
}

#attachment-section {
    display: none;
    margin-top: 20px;
}


/* --- Overlay para menu mobile --- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.overlay.is-visible {
    opacity: 1;
    visibility: visible;
}


/* --- Estilos dos Cards de Estatísticas (dashboard.php) --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eef0f3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.stat-card-info p {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.stat-card-info h2 {
    font-size: 30px; /* Fonte dos números dos cards */
    font-weight: 600;
    color: #007EC4;
    margin-bottom: 8px;
}

.stat-card-info h2.text-pending { color: #f39c12; }
.stat-card-info h2.text-completed { color: #27ae60; }
.stat-card-info h2.text-canceled { color: #c0392b; }

.stat-card-info span {
    font-size: 13px;
    color: #888;
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon i {
    width: 24px;
    height: 24px;
}

.stat-card-icon.icon-total { background-color: #e9f2ff; color: #007EC4; }
.stat-card-icon.icon-pending { background-color: #fff0c2; color: #f39c12; }
.stat-card-icon.icon-completed { background-color: #d6f5d6; color: #27ae60; }
.stat-card-icon.icon-canceled { background-color: #ffe0e0; color: #c0392b; }

/* --- Paginação --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 8px;
}

.pagination a {
    text-decoration: none;
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination a:hover {
    background-color: #F4F5FB;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pagination a.active {
    background-color: #007EC4;
    color: #fff;
    border-color: #007EC4;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.pagination a.disabled {
    color: #aaa;
    pointer-events: none;
    background-color: #f8f9fa;
}

    .dashboard-layout {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    .main-column {
        flex: 2;
        min-width: 320px; /* Garante que o conteúdo principal não seja esmagado */
    }
    .sidebar-column {
        flex: 1;
        min-width: 280px; /* Largura mínima para o card lateral */
    }
    .stats-card-tipo {
        background-color: #fff;
        border-radius: 8px;
        padding: 1.5rem;
        border: 1px solid #e5e7eb;
        height: fit-content; /* Para se ajustar ao conteúdo */
    }
    .stats-card-tipo h3 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 1.5rem;
        color: #374151;
    }
    .stats-card-tipo ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .stats-card-tipo li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.85rem 0;
        border-bottom: 1px solid #f3f4f6;
        font-size: 0.9rem;
    }
    .stats-card-tipo li:last-child {
        border-bottom: none;
    }
    .stats-card-tipo li span {
        color: #6b7280;
    }
    .stats-card-tipo li strong {
        font-weight: 600;
        color: #1f2937;
        background-color: #f3f4f6;
        padding: 2px 8px;
        border-radius: 5px;
    }

/* --- Responsividade --- */
@media (max-width: 992px) {
    /* ADICIONADO: Permite a rolagem normal em telas mobile */
    html, body {
        overflow: auto;
    }
    
    .page-header h1{
	    font-size: 20px;
    }
    
    .page-header p{
	    font-size: 12px;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        margin-bottom: 20px;
    }

    .menu-button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .menu-button i {
        color: #333;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 1000;
        transform: translateX(-100%);
        border-right: 1px solid #e0e0e0;
        /* Remove a rolagem interna no mobile, pois a página inteira rolará */
        overflow-y: visible; 
    }

    .sidebar.is-open {
        transform: translateX(0);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .main-content {
        padding: 15px;
    }

    .form-grid,
    .filters-grid,
    .card-details,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .page-header.edit-header {
        padding-bottom: 20px;
    }
    
    .stat-card-icon {
	    width: 28px;
	    height: 28px;
	    padding: 6px;
	    border-radius: 50%;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	
	.mobile-header {
        border-radius: 10px;
    }
}