.contact-info {
    position: absolute;
    bottom: 10px;
    left: 42%;
    color: white;
    font-size: 0.9rem;
}

.payment-message-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.payment-message {
    position: relative;
    max-width: 500px;
    padding: 20px 40px 20px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pending-message {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
}

.close-button:hover {
    color: #000;
}