* {
  box-sizing: border-box;
}

body {
  max-width: 100vw;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  padding: 5vh 0;
  background-color: aliceblue;
  display: flex;
  justify-content: center;
}

.component {
  display: flex;
  flex-direction: column;
  width: 800px;
  background-color: white;
  padding: 25px 50px;
  border-radius: 25px;
  row-gap: 30px;
}

.headerComponentContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.title-number-notifications {
  display: flex;
  align-items: center;
  gap: 30px;
}

.title-number-notifications h1 {
  margin: 0;
}

.title-number-notifications span {
  background-color: darkblue;
  color: white;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 20px;
}

.headerComponentContainer button {
  color: gray;
  background: transparent;
  border: 1px solid rgb(229, 220, 220);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}

.headerComponentContainer button:hover {
  background-color: rgb(214, 208, 208);
  color: white;
  transition: all 100ms ease-in-out;
  border: none;
}

.headerComponentContainer button:active {
  background-color: white;
  color: gray;
  transition: all 300ms ease-in-out;
}

.notificationsContainer {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
}

.notification {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  cursor: pointer;
}

.notification:hover {
  box-shadow: 5px 5px rgb(236, 240, 243);
}

.newNotification {
  background-color: rgb(208, 216, 241);
}

.notificationReaded {
  background-color: white;
}

.userImgContainer {
  width: 50px;
  height: 50px;
}

.userImgContainer img {
  width: 100%;
}

.notificationInfo {
  width: 85%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.notificationInfo p {
  margin: 0;
}

.info {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.info p span {
  font-weight: 600;
}

.groupNotification {
  color: darkblue;
}

.datePublished {
  color: gray;
}

.privateMessage {
  border: 1px solid rgb(160, 155, 155);
  border-radius: 10px;
  padding: 10px;
}

.newNotificationAlert {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 20px;
  margin-top: 3%;
}
