#paymentModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#paymentModal .modal-header::after,
#paymentModal .modal-header::before {
    content: '';
    display: none;
}

#paymentModal .modal-footer .payment-modal-btn {
    line-height: 1;
    padding-block: 8px;
}

.paymentModalLabel {
    font-size: 18px;
}

.payment-section {
    text-align: center;
}

.payment-section .btn {
    padding: 12px 30px;
    line-height: 1;
    padding-block: 1rem;
    font-size: 16px;
    font-weight: 600;
}

#paymentModal .modal-content {
    border-radius: 10px;
}

#paymentModal .modal-header {
    background: linear-gradient(135deg, #0baf4f 0%, #089e47 100%);
    color: white;
    border-radius: 10px 10px 0 0;
}

#paymentModal .modal-header .close {
    color: white;
    opacity: 1;
}

#paymentModal .form-control:disabled,
#paymentModal .form-control[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

#paymentModal .alert-info {
    border-left: 4px solid #17a2b8;
}

#paymentModal .text-danger {
    color: #dc3545;
}

#paymentModal .price-form-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.participant-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    position: relative;
}

.participant-card .card-header {
    background: linear-gradient(135deg, #0baf4f 0%, #089e47 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.participant-card .remove-participant {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

.participant-card .remove-participant:hover {
    background: rgba(255, 255, 255, 0.3);
}

#participantsContainer {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 15px;
}

.ticket-count-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ticket-count-selector button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0baf4f;
    background: white;
    color: #0baf4f;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.ticket-count-selector button:hover {
    background: #0baf4f;
    color: white;
}

.ticket-count-selector button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ticket-count-selector .count-display {
    font-size: 24px;
    font-weight: bold;
    color: #0baf4f;
    min-width: 60px;
    text-align: center;
}

.total-price-display {
    background: linear-gradient(135deg, #0baf4f 0%, #089e47 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.total-price-display .price-label {
    font-size: 14px;
    opacity: 0.9;
}

.total-price-display .price-amount {
    font-size: 28px;
    font-weight: bold;
    margin-top: 5px;
}