/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header img {
    max-width: 150px; /* Adjust logo size as needed */
    margin-bottom: 10px;
}

h1, h2 {
    color: #333;
    
}

/* Add more styles to match the second image */
#ticket-selection {
    width: 50%;
    padding-bottom: 300px;
    padding-left: 300px;
 
 margin-bottom: 20px;
 align-items: center;
}
.ticket-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            border: 1px solid #ddd;
            margin: 10px 0;
            border-radius: 5px;
            background-color: #fff;
        }

.ticket-option label {
           
            justify-content: space-between;
            align-items: center;
            padding: 5px;
           font-size: 16px;
            background-color: #fff;

}
input[type="number"]{
 width: 50px;
 padding: 5px;
 border: 1px solid #ccc;
 border-radius: 4px;

}

        .proceed-btn {
            width: 100%;
            padding: 10px;
            background: gray;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }


/* Section Hide logic */
#attendee-details {
     width: 50%;
    padding-bottom: 300px;
    padding-left: 300px;
 
 margin-bottom: 20px;
 align-items: center;
 display: none;
}

        .event-details {
            margin-top: 10px;
            font-size: 14px;
            color: #555;
        }
        .ticket-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px;
            border: 1px solid #ddd;
            margin: 5px 0;
            border-radius: 5px;
            background-color: #fff;
        }
        .counter {
            display: flex;
            align-items: center;
        }
        .counter button {
            border: 1px solid red;
            background: none;
            color: red;
            padding: 5px 10px;
            cursor: pointer;
            border-radius: 5px;
        }
        .counter button:hover {
            background: red;
            color: white;
        }
        .counter span {
            padding: 0 10px;
            font-size: 16px;
        }
