:root {
  --primary-blue: #1374ed;
  --primary-white: #fefefe;
  --blaq: #050505;
  --secondary-blue: #69bbfe;
  --text: #adaeb0;

  --bg-light: #f3effe;
  --card-white: #ffffff;
  --border-light: #e8e8e8;
  --radius-lg: 18px;
  --shadow-1: 0 4px 10px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden; 
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--bg-light);
  color: var(--blaq);
  display: flex;
  flex-direction: column;
}

/* Container: Default Mobile */
.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

/* Desktop: Full Width */
@media (min-width: 1024px) {
  .container {
    max-width: 100%; 
    padding: 0 40px; 
  }
}

.icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

/* Headings */
.section-title {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 10px;
  width: 100%;
  display: block;
}
.section-heading {
  font-size: 24px;
  color: var(--blaq);
  margin-bottom: 10px;
  font-weight: 600;
}

/* Notification Badge */
.notif-bell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50% ;
}
#notif-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ff3b30;
  color: white;
  font-size: 10px;
  font-weight: 700;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-light);
  z-index: 10;
}
