.card {
    background-color:rgb(32, 172, 12);
    border-radius: 10px;
    padding: 20px;
    width: 420px;
    text-align: center;
    position: relative;
    margin: 2rem auto;
}


/* Creating the inward curve effect */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: rgb(12, 32, 172);
    border-radius: 100px;
    transform: translate(30%, -30%);
}


h2 {
    margin: 0;
}

p {
    font-size: 14px;
    margin: 5px 0;
}

.details p{
    color: white;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    background-color: rgba(32, 172, 72, 0.8);
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

.progress-container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
}

.progress-bar {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    appearance: none; /* Removes default browser styles */
}

progress::-webkit-progress-bar {
    background-color: #ddd;
    border-radius: 20px;
}

progress::-webkit-progress-value {
    background: rgb(12, 32, 172);
    border-radius: 20px;
}

progress::-moz-progress-bar {
    background: linear-gradient(135deg, #32a852, #228b22);
    border-radius: 20px;
}

.progress-text {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.details p {
    margin: 10px 0;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.payment-options img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
