:root {
    --cor-primaria: #c22d45;
    /* vermelho */
    --cor-secundaria: #600000;
    /* bordô */
    --cor-destaque: #b87b7d;
    /* rosa claro */
    --cor-texto-suave: #9e7b64;
    /* bege claro */
    --cor-fundo-claro: #ffffff;
    /* branco */
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-fundo-claro);
}

.heading {
    font-family: 'Playfair Display', serif;
}

.sidebar-item:hover {
    background-color: var(--cor-primaria);
}

.sidebar-item.active {
    background-color: var(--cor-secundaria);
    color: var(--cor-fundo-claro);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.filter-option {
    transition: all 0.2s ease;
}

.filter-option.active {
    background-color: #FDA4AF;
    color: white;
    border-color: #FDA4AF;
}

.table-row {
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: #FEF2F2;
}

.progress-bar {
    height: 8px;
    border-radius: 4px;
    background-color: #E5E7EB;
    overflow: hidden;
}

.progress-value {
    height: 100%;
    border-radius: 4px;
    background-color: #FDA4AF;
}

.no-data-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}