/* Drawer Styling */
.notes-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

.notes-drawer.open {
    right: 0;
}

.notes-drawer-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.close-drawer {
    align-self: flex-end;
    font-size: 36px;
    text-decoration: none;
    color: #333!important;
    margin-bottom: 16px;
}

#note-form textarea {
    width: 100%;
    height: 80px;
    margin-bottom: 16px;
}

#note-form button {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

#note-form button:hover {
    background: #005a87;
}

#notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex-grow: 1;
}

#notes-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
