body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #fafafa;
  }
  
  h2 {
    color: #333;
  }
  
  ul {
    list-style-type: disc;
    padding: 0;
  }
  
  li {
    background: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Buttons Container */
.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* General Button Styles */
button {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease-in-out, transform 0.2s;
}

/* Button Colors */
#copyNotes {
    background: #007bff;
    color: white;
}

#copyNotes:hover {
    background: #0056b3;
}

#importNotes {
    background: #28a745;
    color: white;
}

#importNotes:hover {
    background: #1e7e34;
}

#exportNotes {
    background: #6f42c1;
    color: white;
}

#exportNotes:hover {
    background: #563d7c;
}

#clearNotes {
    background: #dc3545;
    color: white;
}

#clearNotes:hover {
    background: #a71d2a;
}

/* Button Click Effect */
button:active {
    transform: scale(0.95);
}

  
  /* Notification Styles */
  #notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }
  
  .notification {
    background-color: #4caf50;
    color: white;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(100%);
    animation: slideInOut 3s forwards;
  }
  
  @keyframes slideInOut {
    0% { opacity: 0; transform: translateX(100%); }
    10% { opacity: 1; transform: translateX(0); }
    90% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(100%); }
  }
  