body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f4f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.payment-container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

.payment-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.card-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px;
}

.card-header p {
    font-size: 16px;
    color: #718096;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    color: #2d3748;
    transition: border-color 0.2s;
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7fafc;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
}

.price-display span:first-child {
    color: #718096;
}

.price-display span:last-child {
    color: #2d3748;
    font-size: 20px;
}

.pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background-color: #0d2240;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pay-btn:hover {
    background-color: #1a365d;
}

.razorpay-logo {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px;
}

.modal-header p {
    font-size: 16px;
    color: #718096;
    margin: 0 0 24px;
}

#booking-summary {
    text-align: left;
    background-color: #f7fafc;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

#booking-summary p {
    margin: 0 0 12px;
    color: #4a5568;
}

#booking-summary p:last-child {
    margin-bottom: 0;
}

.close-btn {
    width: 100%;
    padding: 12px;
    background-color: #4299e1;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.close-btn:hover {
    background-color: #2b6cb0;
}
