.note-section {
    max-width: 800px;
    margin: auto;
    padding: 15px;
}

.note-card {
    background-color: #f8f9fa;
    border-left: 5px solid #6c5ce7;
    padding: 12px; 
    margin-bottom: 15px; 
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.note-card:hover {
    background-color: #ececec;
    transform: translateY(-2px);
}

.note-title {
    font-size: 18px; 
    font-weight: bold;
    color: #6c5ce7;
}

.note-list {
    list-style-type: none;
    padding-left: 0;
    font-size: 16px;
}

.note-list li {
    padding: 3px 0; 
}

.note-list li:hover {
    color: #d63031;
    cursor: pointer;
}

header, footer {
    width: 800px;
}