/* General Styles */
body, html {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f9;
    color: #333;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #007BFF, #00BFFF);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

header a {
    color: #fff;
    text-decoration: none;
}

header .logo {
    height: 50px;
}

/* Navigation Menu Styles */
nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Main Content Styles */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 25px;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    font-size: 1.2rem;
}

/* Calendar Styles */
#calendar {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

.fc-day-white {
    background-color: #e6f7ff !important;
    border: 2px solid #007BFF !important;
}

.fc-day-today {
    background-color: #ffebcc !important;
}

.fc-day-today.fc-day-white {
    background-color: #ffd9b3 !important;
}

.fc-button-primary {
    background-color: #4caf50 !important;
    border-color: #4caf50 !important;
}

.fc-button-primary:hover {
    background-color: #45a049 !important;
    border-color: #45a049 !important;
}

.fc-toolbar-title {
    font-size: 1.5em !important;
    color: #333 !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav {
        flex-direction: column;
        gap: 5px;
    }

    #calendar {
        font-size: 0.9rem;
    }

    .fc-toolbar-title {
        font-size: 1.2rem !important;
    }

    .fc-button {
        padding: 5px 10px;
    }
}