/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #e0e5ec;
    overflow: hidden;
}

h1 {
    background: #e0e5ec;
    color: #008b8b;
    padding: 20px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 6px 6px 10px #b3b9c5, -6px -6px 10px #ffffff;
    margin-top: 60px;
}

.menu {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.menu a {
    background: #e0e5ec;
    color: #008b8b;
    text-decoration: none;
    padding: 15px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 6px 6px 10px #b3b9c5, -6px -6px 10px #ffffff;
    text-align: center;
}

.menu a:hover {
    box-shadow: inset 4px 4px 6px #b3b9c5, inset -4px -4px 6px #ffffff;
    background: #d1d9e6;
}

.notes-container {
    margin-top: 30px;
    padding: 20px;
}

.note {
    background: #e0e5ec;
    color: #008b8b;
    padding: 15px;
    margin: 10px auto;
    border-radius: 15px;
    box-shadow: 6px 6px 10px #b3b9c5, -6px -6px 10px #ffffff;
    text-align: left;
    cursor: pointer;
    max-width: 600px;
    transition: 0.3s;
}

.note:hover {
    box-shadow: inset 4px 4px 6px #b3b9c5, inset -4px -4px 6px #ffffff;
    background: #d1d9e6;
}

.note .short {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.note .full {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.note.expanded .short {
    display: none;
}

.note.expanded .full {
    display: block;
}

.add-note-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.add-note-form textarea {
    width: 80%;
    max-width: 600px;
    height: 100px;
    padding: 10px;
    border-radius: 15px;
    border: none;
    box-shadow: 6px 6px 10px #b3b9c5, -6px -6px 10px #ffffff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    resize: vertical;
}

.add-note-button {
    background: #008b8b;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.add-note-button:hover {
    background: #006b6b;
}