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

body {
  background-image: linear-gradient(to top left, #3d8a9c, #6a2b8f);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  width: 35rem;
}

.bell {
  position: absolute;
  top: -2rem;
  right: 0;
  background-color: black;
  color: white;
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.bell svg {
  fill: white;
  width: 100%;
  height: 100%;
}

.notification {
  background-color: aliceblue;
  box-shadow: 0px 10px 20px gray;
  padding: 2rem;
  border-radius: 10px;
}

#head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.read {
  background-color: #3d8a9c;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.read:hover {
  background-color: #306e7c;
}

.list {
  list-style: none;
}

.item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.image img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.item-btns {
  margin-top: 0.5rem;
}

.item-btns button {
  margin-right: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  border: 1px solid #333;
  background-color: white;
  cursor: pointer;
  font-size: 0.9rem;
}

.item-btns button:hover {
  background-color: #333;
  color: white;
}

.read-item {
  opacity: 0.6;
}

.read-item p,
.read-item span {
  color: gray;
}

.response {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #2f2f2f;
}
