/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* CSS Variables Start */
:root {
  /* Theme Colors */
  --theme-color-1: #f7f7f7;
  --theme-color-2: rgba(255, 191, 0, 0.247);
  --theme-color-3: rgba(255, 242, 0, 0.333);
  --theme-color-4: rgba(0, 183, 255, 0.13);

  --selected-theme: var(--theme-color-1);

  /* Theme Fonts */
  --primary-font: "Poppins", sans-serif;
}
/* CSS Variables End */

/* Reset Default Styles Start */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  overflow-x: hidden;
  font-family: var(--primary-font);
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--selected-theme);
}
/* Reset Default Styles End */

/* Page-Specific Styles Start */
.site-wrapper {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Primary Heading */
.primary-heading {
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: rgb(0, 0, 0);
  word-spacing: 4px;
}

.color-themes-box {
  width: fit-content;
  margin-inline: auto;
  padding: 2.5rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.137) inset;
}

.color-themes-box .color-picker {
  width: 4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
}

.color-themes-box .color-picker.selected-color {
  border: 3px solid rgb(0, 0, 0);
}

.color-themes-box .color-picker:nth-child(1) {
  background-color: var(--theme-color-1);
}

.color-themes-box .color-picker:nth-child(2) {
  background-color: var(--theme-color-2);
}

.color-themes-box .color-picker:nth-child(3) {
  background-color: var(--theme-color-3);
}

.color-themes-box .color-picker:nth-child(4) {
  background-color: var(--theme-color-4);
}

/* Inbox Status Bar */
.inbox-status-bar {
  width: 100%;
  padding: 2.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.137) inset;
}

.inbox-status-bar .inbox-status {
  flex: 1 1 15rem;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.21);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.4px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  background-color: #2da0ff;
}

.inbox-status-bar .inbox-status:nth-child(2) {
  background-color: #ff1919;
}

.inbox-status-bar .inbox-status:nth-child(3) {
  background-color: rgb(1, 206, 1);
}

.inbox-status-bar .inbox-status .inbox-count {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background-color: #fff;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-content: center;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.26);
}

/* Notifications Container */
.notifs-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.no-notifs-heading {
  text-align: center;
  font-size: 2.4rem;
  text-transform: capitalize;
  font-weight: 500;
  color: rgb(95, 95, 95);
}

.notif-card {
  padding: 2.5rem;
  background-color: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.176) inset;
  text-align: center;
}

.notif-card-body {
  padding: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.delete-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.notif-card:nth-child(n) :is(.notif-card-body, .notif-card-footer span) {
  background-color: rgba(0, 183, 255, 0.13);
}

.notif-card:nth-child(2n) :is(.notif-card-body, .notif-card-footer span) {
  background-color: rgba(255, 242, 0, 0.333);
}

.notif-card:nth-child(3n) :is(.notif-card-body, .notif-card-footer span) {
  background-color: rgba(255, 191, 0, 0.247);
}

.notif-card:nth-child(4n) :is(.notif-card-body, .notif-card-footer span) {
  background-color: rgba(255, 0, 128, 0.119);
}

.profile {
  width: 7rem;
  padding: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.profile img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.title {
  font-size: 1.5rem;
  font-weight: 450;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: "...";
}

.content {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: "...";
  font-size: 1.2rem;
  color: grey;
}

.notif-card-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
}

.notif-card-footer div {
  display: flex;
  gap: 0.8rem;
}

.notif-card-footer .label {
  color: #000000;
  text-transform: uppercase;
  font-weight: 500;
  display: grid;
  place-content: center;
  padding-inline: 1rem;
  letter-spacing: 0.3px;
}

.notif-card-footer .new-label {
  animation: animate-new-label 1s linear infinite alternate;
}

@keyframes animate-new-label {
  100% {
    transform: scale(1.15);
  }
}

.delete-icon,
.mute-toggle-icon,
.read-toggle-icon {
  width: 2.3rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.285);
}

/* Page-Specific Styles End */
