/* Estilos para o Dashboard KiviCare */
.entry-title {
    text-align: center;
    margin: 40px 0 50px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
}
.containerActions{
    max-width: 950px;
    margin: 12px auto;
    display: flex;
    justify-content: space-between;
}
.containerActions button {
    padding: 8px 15px;
    background-color: #ff4e1a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}
.containerActions button:first-child {
    margin-left: 0;
}
.containerActions button:hover {
    background-color: #d64215;
}
.containerActions button:active {
    background-color: #d64215;
}
.containerActions button.exportPdf {
    background-color: #dc3545;
}
.containerActions button.exportExcel {
    background-color: #28a745;
}
.containerActions button.exportPdf:hover,
.containerActions button.exportExcel:hover {
    opacity: 0.9;
}
.dashboard-container {
    font-family: Arial, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.dashboard-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}
.dashboard-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    gap: 14px;
}
.metric-box {
    box-shadow: 0 0 2rem 0 rgba(136,152,170,.15);
    background: hwb(0 100% 0%);
    /* color: #ff4e1a; */
    color: #5b5756;
    padding: 20px;
    border-radius: 8px;
    width:32%;
}
.metric-box h3 {
    margin: 0;
    font-size: 16px;
}
.metric-box p {
    margin: 5px 0 0;
    font-size: 22px;
    color: #1a252f;
    font-weight: 600;
}
.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 40px;
    color: #2c3e50;
}
.divisor{
    height: 2px;
    background-color: #f9f9f9;
    max-width: 950px;
    width: 100%;
    margin: 40px auto;
    border-radius: 200px;
}
.table-container {
    margin-top: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}
th {
    background-color: #ff4e1a !important;
    color: white;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
.filter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.filter-container {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 950px;
    width: 100%;
    margin: 20px 0 16px;
}
.filter-form label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.filter-form input {
    padding: 8px;
    font-size: 14px;
}
.filter-form button {
    padding: 8px 15px;
    background-color: #ff4e1a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
}
.filter-form button:hover {
    background-color: #d64215;
}