/* General Body Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 20px;
    background-color: #f4f7f6;
    color: #333;
}

/* Calendar Container */
#calendar {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* Header and Title */
h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

/* FullCalendar specific styles */
.fc {
    font-size: 1em;
}

/* Toolbar Buttons */
.fc-toolbar-chunk .fc-button {
    background-color: #3498db;
    border-color: #3498db;
    color: #ffffff;
    text-transform: capitalize;
    transition: background-color 0.3s, border-color 0.3s;
}

.fc-toolbar-chunk .fc-button:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.fc-toolbar-chunk .fc-button-primary:disabled {
    background-color: #bdc3c7;
    border-color: #bdc3c7;
}

/* Today Button */
.fc-today-button {
    background-color: #e67e22 !important;
    border-color: #e67e22 !important;
}

.fc-today-button:hover {
    background-color: #d35400 !important;
}

/* Calendar Header */
.fc-toolbar-title {
    font-size: 1.75em;
    color: #2c3e50;
}

/* Event Status Styles */
.fc-event.status-booked {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.fc-event.status-enquire {
    background-color: #f1c40f;
    border-color: #f1c40f;
    color: #2c3e50;
}

/* Day Header */
.fc-col-header-cell {
    background-color: #ecf0f1;
    color: #7f8c8d;
    font-weight: bold;
}

/* Today's Date Highlighting */
.fc-day-today {
    background-color: #fdf9e7 !important;
}


/* Admin link in footer */
footer {
    text-align: center;
    margin-top: 40px;
}

footer a {
    text-decoration: none;
    color: #3498db;
    transition: color 0.3s;
}

footer a:hover {
    color: #2980b9;
}


/* Media query for mobile devices */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    #calendar {
        margin: 20px auto;
        padding: 10px;
    }

    .fc-toolbar {
        flex-direction: column;
    }

    .fc-toolbar-chunk {
        margin-bottom: 10px;
    }

    .fc-toolbar-title {
        font-size: 1.4em;
    }

    .fc {
        font-size: 0.9em;
    }
}
