     .header {
            background-color: #ffffff;
            color: #333;
            display: flex;
            align-items: center;
            padding: 10px 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .back-btn {
            font-size: 24px;
            cursor: pointer;
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        .back-btn svg {
            width: 30px;
            height: 30px;
            fill: #333;
        }
        .header-title {
            font-size: 24px;
            font-weight: bold;
            flex-grow: 1;
            text-align: center;
        }
       
        body {
            background: #f8f9fa;
        }
        .event-container {
            max-width: auto;
            margin: 50px auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }
        .event-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .event-image {
            flex: 1;
            max-width: 45%;
        }
        .event-image img {
            width: 100%;
            border-radius: 10px;
        }
        .event-details {
            flex: 1;
            max-width: 55%;
            padding-left: 20px;
        }
        .event-title {
            font-size: 28px;
            font-weight: bold;
            color: #343a40;
        }
        .event-info {
            font-size: 16px;
            margin: 10px 0;
            display: flex;
            align-items: center;
        }
        .event-info img {
            width: 20px;
            margin-right: 8px;
        }
        .event-description {
            font-size: 15px;
            color: #6c757d;
            line-height: 1.5;
            margin-top: 15px;
        }
        .btn-book {
            width: 100%;
            background: #ff4d4d;
            border: none;
            color: white;
            padding: 12px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
            transition: 0.3s;
        }
        .btn-book:hover {
            background: #e63946;
        }
        @media (max-width: 768px) {
            .event-content {
                flex-direction: column;
            }
            .event-image, .event-details {
                max-width: 100%;
                padding-left: 0;
            }
        }
        
        .ticket-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.ticket-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.qty-input {
    width: 60px;
    text-align: center;
}

.coupon-section {
    text-align: center;
    margin: 20px;
}

.coupon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.coupon-card {
    background: #fff; /* White background */
    padding: 20px;
    border-radius: 16px; /* Rounded corners */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Softer shadow */
    max-width: 320px; /* Increased width */
    min-height: 180px; /* Increased height */
    text-align: left;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid #ff758c; /* Light red border */
}

.coupon-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4em;
    font-weight: bold;
    color: #333; /* Dark text for contrast */
}

.copy-btn {
    background: #ff758c; /* Button color */
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    color: white; /* White text */
    transition: background 0.2s;
}

.copy-btn:hover {
    background: #e04767; /* Darker shade on hover */
}

.coupon-details {
    margin-top: 15px;
    color: #555; /* Dark grey for readability */
    font-size: 1.1em;
}

.coupon-details p {
    margin: 8px 0;
}

 .coupon-section {
            max-width: 600px;
            margin: auto;
        }
        .coupon-card {
            background: #ffcc00;
            border: 2px dashed #d63300;
            border-radius: 10px;
            padding: 20px;
            margin: 10px;
            position: relative;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }
           .coupon-header {
            font-size: 20px;
            font-weight: bold;
            color: #d63300;
        }
           .coupon-code {
            background: #d63300;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 18px;
        }
            .copy-btn {
            background: #d63300;
            color: white;
            border: none;
            padding: 5px 10px;
            margin-left: 10px;
            border-radius: 5px;
            cursor: pointer;
        }
        .copy-btn:hover {
            background: #a82600;
        }
        .coupon-details {
            margin-top: 10px;
            font-size: 16px;
        }
        .coupon-details p {
            margin: 5px 0;
        }

.no-coupons {
    color: red;
    font-weight: bold;
    font-size: 1.2em;
}

    @media (max-width: 576px) {
    .modal-dialog {
        max-width: 100%; /* Modal ka width thoda aur kam kiya */
        margin: 5px auto; /* Center align */
    }

    .modal-content {
        font-size: 22px; /* Overall text chhota kiya */
        padding: 5px;
    }

    .modal-title {
        font-size: 14px; /* Title ka size chhota kiya */
    }

    .table {
        font-size: 10px; /* Table ka text chhota kiya */
    }

    .table th, .table td {
        padding: 4px; /* Table ki padding kam ki */
    }

    .qty-input {
        width: 45px; /* Quantity input chhota kiya */
        font-size: 10px;
        padding: 3px;
    }

    .buy-btn {
        font-size: 10px; /* Buy button ka size chhota kiya */
        padding: 4px 8px;
        white-space: nowrap; /* Button text ek line me rahe */
    }

    .modal-footer .btn {
        font-size: 12px; /* Close button chhota kiya */
        padding: 5px 8px;
    }

    .modal-header {
        padding: 5px 10px;
    }
}

  .custom-modal {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .bg-gradient {
        background: linear-gradient(45deg, #ff3d00, #ff8a00);
    }

    .input-custom {
        border-radius: 10px;
        border: 1px solid #ccc;
        padding: 12px;
        transition: all 0.3s ease;
    }

    .input-custom:focus {
        border-color: #ff3d00;
        box-shadow: 0 0 10px rgba(255, 61, 0, 0.5);
    }

    .btn-gradient {
        background: linear-gradient(90deg, #ff3d00, #ff8a00);
        border: none;
        color: #fff;
    }

    .btn-gradient:hover {
        background: linear-gradient(90deg, #e62e00, #ff6a00);
    }
    
