/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #004d41bd;
}


.calendar-name {
    font-size: 2em;
    text-align: center;
    color: #007d6a;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.calendar-container {
    width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00a78e;
    color: #fff;
    padding: 15px 10px;
}

.nav-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
}

#monthYear {
    font-size: 1.2em;
    margin: 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    background-color: #f0f0f0;
    padding: 10px 0;
    font-weight: bold;
    color: #555;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    padding: 10px;
    gap: 5px;
}

.calendar-dates div {
    padding: 10px;
    border-radius: 5px;
    background-color: #eaeaea;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calendar-dates div:hover {
    background-color: #00a78e;
    color: #fff;
}
