/* Common Styles for the Application */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003366;
    color: white;
    padding: 10px 20px;
}

.logo-container {
    flex: 1;
    text-align: center;
}

.logo {
    height: 60px;
}

.title {
    flex: 2;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

/* Main Content */
.content {
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Search Section */
.search-section {
    text-align: center;
    margin-bottom: 20px;
}

.search-section label {
    font-weight: bold;
    margin-right: 10px;
}

.search-section input {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-section button {
    padding: 8px 15px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-section button:hover {
    background-color: #0055a5;
}

/* Ticket Status & Availability Tables */
.ticket-status, .availability-section {
    margin-top: 20px;
}

h2 {
    background-color: #003366;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #0055a5;
    color: white;
}

.available {
    color: green;
    font-weight: bold;
}

.not-available {
    color: red;
    font-weight: bold;
}

/* Options Section */
.options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.option {
    text-align: center;
    cursor: pointer;
}

.option img {
    width: 100px;
    height: 100px;
}

.option p {
    font-size: 16px;
    font-weight: bold;
}

/* Footer */
.footer {
    text-align: center;
    background-color: #003366;
    color: white;
    padding: 10px;
    margin-top: 20px;
}
