.donation-therm-wrapper-078fe01a {
    text-align: center;
    padding: 20px 10px;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.therm-title-078fe01a {
    margin-bottom: 30px;
}

.therm-container-078fe01a {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 40px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    padding-left: 30px; /* Space for bulb */
}

.therm-track-078fe01a {
    width: 100%;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 0 15px 15px 0;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.therm-fill-078fe01a {
    height: 100%;
    background-color: #d62828;
    border-radius: 0 15px 15px 0;
    transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.therm-bulb-bg-078fe01a {
    width: 60px;
    height: 60px;
    background-color: #e0e0e0;
    border-radius: 50%;
    position: absolute;
    left: -10px; /* Offset bulb to left */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.therm-bulb-inner-078fe01a {
    width: 50px;
    height: 50px;
    background-color: #d62828;
    border-radius: 50%;
}

.therm-tooltip-078fe01a {
    position: absolute;
    bottom: 180%;
    left: 100%;
    background: #222;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.therm-tooltip-078fe01a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #222 transparent transparent transparent;
}

/* Explosion Animation Styles */
.explosion-container-078fe01a {
    position: absolute;
    top: 50%;
    left: 100%; /* Will be updated via JS to match fill width */
    width: 0;
    height: 0;
    z-index: 10;
    pointer-events: none;
}

.money-particle-078fe01a {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transform-origin: center;
    animation: explode-078fe01a 1.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes explode-078fe01a {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0.5) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1.5) rotate(var(--rot));
    }
}