body {
    font-family: 'Raleway', sans-serif;
    background-color: #f5f9f8;
    color: #333333;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #e0f7fa;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: rotate(360deg);
}

.company-name {
    font-family: 'Tangerine', cursive;
    font-size: 3em;
    color: #00796b;
    margin: 0;
    transition: color 0.3s, transform 0.3s;
}

.company-name:hover {
    color: #004d40;
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    font-size: 1.2em;
    color: #004d40;
    font-weight: 600;
    padding: 10px;
    display: inline-block;
    transition: color 0.3s, border-bottom 0.3s, background-color 0.3s;
    border-radius: 4px;
}

nav a:hover, nav a.active {
    color: #00796b;
    border-bottom: 2px solid #00796b;
    background-color: rgba(0, 121, 107, 0.1);
}

main {
    padding: 40px 20px;
}

main h1 {
    font-size: 2.5em;
    color: #00796b;
    transition: color 0.3s;
}

main h1:hover {
    color: #004d40;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

main p {
    font-size: 1.2em;
    color: #555555;
}



.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.calendar-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    font-size: 2em;
    cursor: pointer;
    background-color: #1f54db;
    color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.calendar-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.calendar-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.calendar-content h2 {
    margin: 0;
    color: #00796b;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.calendar-grid div {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.calendar-grid div:hover {
    background-color: #e0f7fa;
}

.close {
    cursor: pointer;
    font-size: 3.5em;
    color: #f7ffff;
    position: absolute;
    top: 10px;
    right: 15px;
}

.self-care-checklist,
.gratitude-wall {
    background-color: #e0f7fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 45%;
    max-width: 45%;
}

.self-care-checklist h2,
.gratitude-wall h2 {
    color: #00796b;
}

#checklist {
    list-style: none;
    padding: 0;
}

#checklist li {
    margin-bottom: 10px;
    font-size: 1.2em;
}

#addTaskBtn, #summaryBtn {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #00796b;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s;
}

#addTaskBtn:hover, #summaryBtn:hover {
    background-color: #004d40;
}

#custom-item {
    margin-top: 10px;
    padding: 5px;
    width: calc(100% - 110px);
    display: inline-block;
}

#add-item {
    padding: 5px 10px;
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

#add-item:hover {
    background-color: #004d40;
}

#summary {
    margin-top: 20px;
    font-size: 1.2em;
    color: #00796b;
}

#gratitude-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

#gratitude-text {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

#gratitude-form button {
    padding: 10px;
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#gratitude-form button:hover {
    background-color: #004d40;
}

#gratitude-posts {
    max-height: 300px;
    overflow-y: auto;
    background-color: #e0f7fa;
    padding: 10px;
    border-radius: 10px;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gratitude-post {
    background-color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gratitude-post button {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.gratitude-post button:hover {
    color: #00796b;
}

.gratitude-post button.liked {
    color: #e91e63;
}



footer {
    background-color: #e0f7fa;
    padding: 10px;
    font-size: 1em;
    color: #00796b;
}
