/* Ticket-sell Form Container */
.ticket-sell-form-container {
    width: 100%;
    max-width: 270px; /* Max width of the form */
    margin: 0 auto;
    padding: 0px 20px;
    padding-top: 14px;
    padding-bottom: 8px;    
    text-align: left;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Labels */
.ticket-sell-form label {
    font-size: 12px;
    color: #333;
    display: block;
    margin-bottom: 5px; 
    text-align: left;
}
.ticket-sell-select {
    font-size: 12px;
}

/* Input fields */
.ticket-sell-input {
    border: 1px solid #f1f1f1 !important;
    border-radius: 12px !important;
    width: 100%;
    padding: 8px;
    margin-bottom: 5px; 
    box-sizing: border-box;
    height: 36px; 
}

/* Submit button */
.ticket-sell-submit {
    padding: 12px 5px;
    background-color: #AF0E22 !important;
    color: white;
    border: none;
    border-radius: 16px !important;
    cursor: pointer;
    font-size: 12px !important;
    width: 80%;
    max-width: 155px;
    margin: 16px auto 0 auto;
    box-sizing: border-box;
    display: block;
}

.ticket-sell-submit:hover {
    background-color: #85111f !important;
}

/* Response Message */
.ticket-sell-response {
    color: red;
    margin-top: 10px;
}

.razorpay-payment-button svg,
.razorpay-checkout-container svg {
    width: 150px !important;
    height: auto !important;
}

.whatsapp-note-message{
  color: #AF0E22;
  font-size: 12px;
}

/* Payment success popup */
.payment-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.payment-popup {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    width: 360px;
    max-width: 90%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    animation: popupFadeIn 0.3s ease;
}

.payment-popup h2 {
    color: #2a9d8f;
    margin-bottom: 10px;
    font-size: 22px;
}

.payment-popup p {
    margin-bottom: 18px;
    color: #444;
    font-size: 15px;
}

@keyframes popupFadeIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Design for ticket sell form */
@media (max-width: 600px) {

   .ticket-sell-form-container {
     margin: -2px auto;
   }  

    .ticket-sell-form-container {
        width: 91%; 
    }

    .ticket-sell-form label {
        font-size: 16px;
    }

    .ticket-sell-submit {
        padding: 15px 20px;         
    }
}