/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #bdbdbd;
    color: #333;
}

/* Header Styles */
.header {
    background-color: #0056b3;
    color: white;
    text-align: center;
    padding: 20px 0;
    text-size-adjust: 100%;
}



.header a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Add transition for color and transform */
}

.header a:hover {
    text-decoration: none;
    color: #fff82e; /* Change color on hover */
    transform: scale(1.05); /* Slightly enlarge the link on hover */
}

/* Main Content Styles */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 20px;
    color: #0056b3;
}

/* Table Styles */
.booking-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.booking-table th, .booking-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.booking-table th {
    background-color: #f8f9fa;
    color: #333;
}

.booking-table tr:hover {
    background-color: #f1f1f1;
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 10px 0;
    background-color: #f8f9fa;
    color: #6c757d;
}