/* Thermometer Style */
.wc-donation-thermometer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.wc-dt-thermometer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wc-dt-thermometer {
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wc-dt-track {
    position: relative;
    height: 100%;
    width: 20px;
    background-color: #e0e0e0;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.wc-dt-progress {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #003468;
    transition: height 1s ease-in-out;
}

.wc-dt-bulb {
    position: relative;
    height: 40px;
    width: 40px;
    background-color: #e0e0e0;
    border-radius: 50%;
    margin-top: -10px;
    overflow: hidden;
}

.wc-dt-current{color:#fff;}

.wc-dt-bulb-liquid {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #ff0000;
    transition: height 1s ease-in-out;
}

.wc-dt-numbers {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

.wc-dt-amount {
    font-size: 16px;
}

/* Progress Bar Style */
.wc-donation-progress-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px 0;
}

.wc-dt-progress-container {
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}

.wc-dt-progress-bar {
    height: 100%;
    background-color: #ff0000;
    border-radius: 15px;
    width: 0;
    transition: width 1s ease-in-out;
}

.wc-dt-progress-numbers {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

/* Responsive styles */
@media screen and (max-width: 480px) {
    .wc-dt-thermometer {
        height: 150px;
    }
    
    .wc-dt-progress-container {
        height: 20px;
    }
}