﻿    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
	.thermobar {
	  background: white;
	}
    .wrapper {
        display: flex;
        gap: 20px;
        align-items: center;
        width: 100%;
        background: white;
    }
	.thermobar > .container{
	max-width:1220px;
	}
    .thermometer-container {
        flex: 0 0 80%;
        background: white;
        padding: 20px;
        border-radius: 8px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    .button-container {
        flex: 0 0 calc(20% - 20px);
      padding:5px;
    }

    .contribute-button {
        display: block;
        width: 100%;
        padding: 15px 20px;
        background: #d32f2f;
        color: white;
        text-align: center;
        text-decoration: none;
        font-size: clamp(14px, 2.5vw, 18px);
        font-weight: bold;
        border-radius: 25px;
        transition: background 0.3s ease;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    .contribute-button:hover {
        background: #b71c1c;
    }

    .thermometer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .amount-raised {
        font-size: clamp(18px, 4vw, 24px);
        font-weight: bold;
        color: #d32f2f;
    }

    .goal-amount {
        font-size: clamp(16px, 3.5vw, 20px);
        font-weight: bold;
        color: #2d5193;
    }

    .thermometer-bar {
        width: 100%;
        height: 40px;
        background: #fdd835;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .thermometer-fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #d32f2f;
        border-radius: 20px 0 0 20px;
        transition: width 0.5s ease-in-out;
    }

    .thermometer-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, 
            rgba(255,255,255,0.3) 0%, 
            rgba(255,255,255,0) 50%, 
            rgba(0,0,0,0.1) 100%);
        pointer-events: none;
    }

    .progress-text {
        margin-top: 12px;
        font-size: clamp(14px, 3vw, 16px);
        font-weight: bold;
        color: #333;
    }

    @media (max-width: 768px) {
        .wrapper {
            flex-direction: column;
        }

        .thermometer-container,
        .button-container {
            flex: 0 0 100%;
            width: 100%;
        }

        .thermometer-container {
            padding: 15px;
        }

        .thermometer-bar {
            height: 35px;
        }

        .thermometer-header {
            flex-direction: column;
            align-items: flex-start;
        }
    }
    
    