body {
    font-family: "Open Sans", sans-serif;
}

.deposit-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.deposit-header {
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.deposit-details {
    margin-bottom: 30px;
}

.detail-row {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.detail-label {
    font-weight: bold;
    display: inline-block;
    width: 100px;
}

.reservation-header {
    color: #444;
    margin: 20px 0;
    font-size: 22px;
}

.pay-button {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 16px;
    transition: background 0.3s ease;
}

.pay-button:hover {
    background: #1976D2;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.payment-processing {
    text-align: center;
    margin: 20px 0;
}

.payment-processing p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}