/* Copyright © 2025 Hruritiz Team */
.button_style_id1 {
    color: #fff;
    --ring-color: #93C5FD;
    border-radius: .5rem;
    padding: .7rem 2rem;
    margin-right: .5rem;
    display: inline-flex;
    border: none;
    transition: .5s
}

.button_style_id1:hover {
    transform: scale(1.1)
}

.button1 {
    background-color: #F91927
}

.button1:hover {
    background-color: #ff0011
}

.button2 {
    background-color: #009FEC
}

.button2:hover {
    background-color: #00a3f5
}

.button3 {
    background-color: #000
}

.button3:hover {
    background-color: #151515
}

.button4 {
    background-color: #fd0
}

.button4:hover {
    background-color: #fff201
}

.button5 {
    background-color: #53b4ff
}

.button5:hover {
    background-color: #23a0ff
}

.button6 {
    background-color: #F57D00   
}

.button6:hover {
    background-color: #ff8400
}

.container {
    display: flex;

    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    position: absolute;
    right: 40px;
    bottom: 70px
}

.piggy-bank-container {
    display: flex;
    align-items: center
}

.piggy-bank {
    width: 150px;
    height: 180px;
    background: url('./image/piggy_bank.png') center/cover no-repeat;
    margin-right: 20px
}

.progress-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.progress-bar {
    width: 40px;
    height: 150px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid #ccc;
    margin-bottom: 10px
}

.progress-fill {
    position: absolute;
    bottom: 0;
    border-radius: 6px;
    width: 100%;
    background-color: #4caf50;
    transition: height .3s;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding-top: 5px
}

.current-amount,.target-amount {
    font-size: 24px;
    font-weight: 700;
    margin: 5px 0
}

.target-amount {
    color: #333
}

.current-amount {
    color: #888
}

@media (max-width: 768px) {
    .container {
        right:2px;
        bottom: 37px;
        padding: 10px;
        transform: scale(.8)
    }

    .piggy-bank {
        width: 100px;
        height: 120px;
        margin-right: 10px
    }
    .button_style_id1 {
        padding: .6rem 1rem;
        margin-right: .5rem;
    }
}
