.abz-container02 {
        width: 700px;
        height: 400px;
        background: white;
        border-radius: 32px;
        box-shadow: 0 0 50px -12px rgba(38, 76, 71, 0.3);
        padding: 20px;
        display: flex;
        flex-direction: column;
	margin: 0 auto;
    }

    /* هدر مبلغ */
    .abz-amount-header {
        background: #b6ebea;
        padding: 8px 16px;
        border-radius: 20px;
        margin-bottom: 12px;
        border: 1px solid #0b5f5e;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 48px;
    }

    .abz-title {
        font-size: 14px;
        font-weight: 600;
        color: #000;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .abz-amount-box {
        background: white;
        padding: 4px 16px;
        border-radius: 30px;
        border: 1px solid #264C47;
        display: flex;
        align-items: center;
        gap: 4px;
        height: 36px;
    }

    .abz-amount-label {
        font-size: 22px;
        font-weight: 800;
        color: #000;
        line-height: 1;
    }

    .abz-amount-unit {
        font-size: 12px;
        color: #000;
        background: #fff;
        padding: 3px 8px;
        border-radius: 30px;
    }

    /* اسلایدر */
    .abz-slider-wrap {
        background: #b6ebea;
        padding: 5px 16px 10px 16px;
        border-radius: 20px;
        border: 1px solid #0b5f5e;
        margin-bottom: 15px;
        height: 60px;
    }

    .abz-slider-header {
        height: 5px;
    }

    .abz-slider {
        width: 100%;
        height: 4px;
        border-radius: 10px;
        background: #0b5f5e;
        outline: none;
        -webkit-appearance: none;
        margin: 8px 0 5px 0;
    }

    .abz-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(38, 76, 71, 0.3);
        cursor: pointer;
        border: 2px solid #0b5f5e;
    }

    .abz-slider-labels {
        display: flex;
        justify-content: space-between;
        font-size: 10px;
        color: #000;
        font-weight: 500;
    }

    .abz-slider-labels span:first-child::after {
        content: " میلیون";
    }
    
    .abz-slider-labels span:nth-child(2)::after {
        content: " میلیون";
    }
    
    .abz-slider-labels span:last-child::after {
        content: " میلیون";
    }

    /* ماه‌ها */
    .abz-months-section {
        margin-bottom: 20px;
        height: 70px;
    }

    .abz-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .abz-section-title {
        font-size: 13px;
        font-weight: 600;
        color: #000;
    }

    .abz-months-grid {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 5px;
    }

    .abz-month-card {
        background: #b6ebea;
        border: 1px solid #0b5f5e;
        border-radius: 16px;
        padding: 5px 0;
        text-align: center;
        cursor: pointer;
        transition: all 0.15s;
        height: 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .abz-month-card.active {
        background: #0b5f5e;
        border-color: #0b5f5e;
    }

    .abz-month-number {
        font-size: 14px;
        font-weight: 700;
        color: #000;
        line-height: 1.2;
    }

    .abz-month-card.active .abz-month-number {
        color: white;
    }

    .abz-month-text {
        font-size: 10px;
        color: #000;
    }

    .abz-month-card.active .abz-month-text {
        color: rgba(255, 255, 255, 0.8);
    }

    /* نتایج */
    .abz-stats-row {
        display: flex;
        gap: 10px;
        height: 100px;
    }

    .abz-stat-card {
        flex: 1;
        background: #b6ebea;
        border-radius: 20px;
        padding: 15px;
        border: 1px solid #0b5f5e;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .abz-stat-card.large {
        flex: 1.3;
    }

    .abz-stat-label {
        font-size: 12px;
        font-weight: 600;
        color: #000;
        margin-bottom: 8px;
    }

    .abz-stat-value {
        font-size: 24px;
        font-weight: 800;
        color: #000;
        unicode-bidi: plaintext;
        display: flex;
        align-items: center;
        gap: 5px;
        line-height: 1.2;
        justify-content: flex-end;
        flex-direction: row;
    }

    .abz-stat-value small {
        font-size: 12px;
        font-weight: 500;
        color: #000;
        order: 2;
    }

    @media (max-width: 700px) {
        .abz-container02 {
            width: 100%;
            height: auto;
            min-height: 400px;
        }
        
        .abz-months-grid {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .abz-stats-row {
            flex-direction: column;
            height: auto;
        }
		
		.abz-months-section {
    height: 120px;
}
		.abz-stat-card {
    flex-direction: row;
    justify-content: space-between;
}
    }