.ev-crowdfunding-container {
    font-family: Inter, Arial, sans-serif;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

.ev-crowdfunding-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    align-items: baseline;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 22px;
    text-align: center;
}

.ev-crowdfunding-progress-bar {
    background-color: #345331;
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
    height: 36px;
    width: 100%;
}

.ev-crowdfunding-progress-fill {
    background-color: #FFFFFF;
    height: 100%;
    border-radius: 9999px;
    width: 0%;
    min-width: 56px;
    transition: width 0.5s ease-in-out;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
}

.ev-crowdfunding-percentage {
    font-family: Arimo, Arial, sans-serif;
    color: #316D16;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
}

.ev-crowdfunding-donors {
    color: #CCDDB2;
    font-size: 16px;
    font-weight: 600;
    line-height: 14px;
    margin-top: 12px;
    text-align: center;
    white-space: nowrap;
}

.ev-crowdfunding-container.is-loading .ev-crowdfunding-progress-fill {
    width: 0%;
}

.ev-crowdfunding-container.has-error {
    opacity: 0.92;
}

@media (max-width: 767px) {
    .ev-crowdfunding-container {
        max-width: 100%;
        padding: 18px 0;
    }

    .ev-crowdfunding-header {
        font-size: 15px;
        line-height: 21px;
    }

    .ev-crowdfunding-progress-bar {
        height: 34px;
    }

    .ev-crowdfunding-progress-fill {
        padding: 0 16px;
        min-width: 52px;
    }

    .ev-crowdfunding-percentage {
        font-size: 13px;
    }

    .ev-crowdfunding-donors {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ev-crowdfunding-header {
        font-size: 14px;
        line-height: 20px;
    }

    .ev-crowdfunding-progress-bar {
        height: 32px;
    }

    .ev-crowdfunding-progress-fill {
        gap: 8px;
        padding: 0 16px;
        min-width: 48px;
    }

    .ev-crowdfunding-percentage {
        font-size: 12px;
    }

    .ev-crowdfunding-donors {
        font-size: 14px;
    }
}
