/* Note List Item */

.list-item {
  text-decoration: none;
  color: #fafafa;
  cursor: pointer;
  background: #353239;
  border: 1px solid #423e47;
  margin: 1.6rem 0;
  padding: 1rem 1.6rem;
  display: block;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: scroll;
  border-radius: 0.5rem;
}

.list-item__container {
  display: flex;
  font-size: 1.3rem;
  font-weight: 300;
  align-items: baseline;
  overflow: scroll;
 
  
}

.list-item__container > *:first-child {
  margin-right: 0.8rem;
}

.list-item:hover {
  background: #3d3941;
}

.list-item__title {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.list-item__subtitle {
  color: #666;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
}

.list-title {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: rgb(214, 79, 79);
}

.empty-message {
  margin: 3.2rem 0;
  color: rgb(230, 69, 69);
}

.button--text{
    text-decoration: underline;
    color: rgb(218, 84, 84);
    font-weight: bold;
}
hr{
    border: 0;
    border-top: 1px solid rgb(73, 73, 73);
   width: 42%;
   margin-left: 29%;
   text-align: center;
  
    
  
}