/* Reset Default Margins & Padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* === HEADER === */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

/* .logo-container { */
/*     flex: 1; */
/*     text-align: center; */
/* } */

.logo {
    max-width: 80px;
    height: auto;
}

.title {
    flex: 2;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}

/* === MAIN CONTENT === */
.content {
    display: flex;
    gap: 20px;
    padding: 20px;
}

/* === LEFT PANEL === */
.left-panel {
    flex: 2;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

/* === SEARCH SECTION === */
.search-section {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.search-section label {
    font-weight: bold;
}

.search-section input {
    padding: 5px;
}

.search-section button {
    padding: 5px 10px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.search-section button:hover {
    background: #0056b3;
}

/* === TICKET STATUS TABLE === */
.ticket-status {
    width: 100%;
}

.ticket-status h2 {
    background: #003366;
    color: white;
    padding: 8px;
    text-align: center;
    border-radius: 5px;
}

.ticket-status table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.ticket-status th, .ticket-status td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.ticket-status th {
    background: #007bff;
    color: white;
}

/* === RIGHT PANEL (BOOKING OPTIONS) === */
.right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Booking Options - Two Columns */
.option {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    color: white;
    font-weight: bold;
}

/* Unique Colors */
.booking { background: #4CAF50; } /* Green */
.transaction { background: #FF9800; } /* Orange */
.advanced-search { background: #2196F3; } /* Blue */
.student-booking { background: #9C27B0; } /* Purple */
.logout { background: rgb(128, 128, 128); } /* Green */

.option:hover {
    filter: brightness(90%);
}

.option-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.option-content img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.option-content p {
    font-size: 16px;
    margin: 0;
}

/* === FOOTER === */
.footer {
    text-align: center;
    background: #003366;
    color: white;
    padding: 10px;
    margin-top: 20px;
}

/* === RESPONSIVE DESIGN === */

/* TABLETS (Max 768px) */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 10px;
    }

    .right-panel {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .option {
        width: 48%;
        display: flex;
        justify-content: center;
    }

    .option-content {
        flex-direction: column;
        text-align: center;
    }

    .option-content img {
        margin: 0 auto 10px auto;
    }

    .title {
        font-size: 1rem;
    }

    .logo {
        max-width: 60px;
    }
}

/* MOBILE (Max 480px) */
@media (max-width: 360px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .title {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 50px;
    }

    .search-section {
        flex-direction: column;
        align-items: center;
    }

    .search-section input, .search-section button {
        width: 100%;
        text-align: center;
    }

    .ticket-status th, .ticket-status td {
        font-size: 14px;
    }

    .right-panel {
        flex-direction: column;
    }

    .option {
        width: 100%;
    }

    .option-content {
        flex-direction: column;
        text-align: left;
    }

    .option-content img {
        width: 40px;
        height: 40px;
    }
}


@media (max-width: 425px) {
	.book-btn {
		padding: 8px 13px !important;
	}
}

.book-btn {
    background-color: #007bff; /* Blue color */
    color: white; /* White text */
    border: none; /* No border */
    padding: 8px 15px; /* Padding for better spacing */
    font-size: 16px; /* Readable text size */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease-in-out; /* Smooth hover effect */
}
.book-btn-grey {
    background-color: rgb(192, 192, 192); /* Blue color */
    color: white; /* White text */
    border: none; /* No border */
    padding: 8px 15px; /* Padding for better spacing */
    font-size: 16px; /* Readable text size */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease-in-out; /* Smooth hover effect */
}
.book-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}