.inverzafira-dashboard-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.inverzafira-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-box h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: inherit;
}

.stat-box p {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: inherit;
}

.projected-summary {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #0073aa;
}

.projected-summary h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.projected-summary p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.inverzafira-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.inverzafira-table th,
.inverzafira-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.inverzafira-table th {
    background-color: #f4f4f4;
    color: #333;
}