/* Mint-green theme and responsive styles for Healthy Finances Pro */

:root {
    --hf-primary-color: #2ecc71;
    --hf-secondary-color: #27ae60;
    --hf-text-color: #2c3e50;
    --hf-bg-color: #ecf0f1;
}

.hf-container {
    font-family: 'Roboto', sans-serif;
    color: var(--hf-text-color);
    background: var(--hf-bg-color);
    padding: 20px;
    border-radius: 5px;
}

.hf-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.hf-table th,
.hf-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.hf-table th {
    background: var(--hf-primary-color);
    color: #fff;
    cursor: pointer;
}

.hf-total {
    font-weight: bold;
}

.hf-alert {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}

.hf-progress {
    background: #ddd;
    border-radius: 4px;
    overflow: hidden;
    height: 20px;
}

.hf-progress-bar {
    background: var(--hf-primary-color);
    height: 100%;
    width: 0;
    transition: width 0.4s ease;
}

@media (max-width: 600px) {
    .hf-table th, .hf-table td {
        font-size: 12px;
    }
}
