*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body{
    padding: 10px;
    background-color: #f5f5f5
}

.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding: 0 16px;
}

.addNote-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 220px;
  height: 160px;
  background-color: #fafafa;
  border: 2px dashed #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 
    background-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.addNote-content:hover {
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.addNote-content span {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.5px;
}

.icon-plus {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  font-size: 1.75rem;
  color: #555;
  background-color: #eee;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.item textarea {
  width: 100%;
  height: 100%;
  padding: 12px;
  border: none;
  resize: none;
  background: transparent;
  font-size: 1rem;
  color: #333;
  outline: none;
}

textarea::-webkit-scrollbar{
    width: 4px;
}

textarea::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: rgb(59, 59, 59);
}

.item {
    position: relative;
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.164);

}

.item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.164);
}

.remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.remove:hover {
  background-color: rgba(0,0,0,0.4);
}