body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #e0f7fa; /* Light cyan background color */
color: #333;

}
.container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
}
.calendar-container {
    text-align: center;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    vertical-align: top;
}
th {
    background-color: #f4f4f4;
}
td {
    background-color: #fff;
    position: relative;
    height: 100px; /* Adjust as needed */
}
.event-marker {
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.month-buttons {
    margin-bottom: 20px;
}
.month-buttons button {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
}
.month-buttons button:hover {
    background-color: #ddd;
}
.events-container {
    margin-top: 20px;
}
.event-item {
    padding: 10px;
    border: 1px solid #ddd;
    margin-top: 5px;
    background-color: #f9f9f9;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.event-item img {
    max-width: 100px;
    margin-top: 10px;
}
.event-form {
    margin-top: 20px;
}
.event-form input, .event-form button {
    padding: 8px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: block;
    width: calc(100% - 22px);
    box-sizing: border-box;
}
.event-form button {
    background-color: #333;
    color: #fff;
    cursor: pointer;
}
.event-form button:hover {
    background-color: #555;
}
.reserve-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.reserve-button:hover {
    background-color: #555;
}

.top-right-buttons {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}
.top-right-buttons a {
    background-color: whitesmoke;
    color: black;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 18px;
}
.top-right-buttons a:hover {
    background-color: #c8f3e5;
}
