/**
 * HOA Dues Collection Progress Meter Styles
 */

.hoa-progress-container {
    margin-bottom: 30px;
}

.hoa-progress-title {
    margin-top: 0;
    margin-bottom: 12px;
}

.hoa-progressbar {
    position: relative;
    height: 30px;
    border-radius: 15px;
    border: 2px solid #ccc;
    background-color: #e3e3e3;
    overflow: hidden;
}

.hoa-progressbar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    border-radius: 13px 0 0 13px;
    background: linear-gradient(90deg, #34a853, #2ea44f);
    transition: width 0.3s ease;
}

.hoa-progressbar-label {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0,0,0,1);
}

.hoa-progress-summary {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
}
