@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--body-bg);
}

/* :root {
  --h1: #222222;
  --side-bar: #222222;
  --bg-color: white;
  --border-color: #e5e5e5;
  --input: #f9f9fa;
}
.dark-mode {
  --h1: white;
  --side-bar: 90949c;
  --bg-color: #0d0d11;
  --border-color: #14141f;
  --input: #343444;
} */
h1 {
  color: var(--h1);
}

body {
  font-family: "Urbanist", serif;
  margin: auto;
}
.setting_container {
  width: 1240px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #666;
}
nav a.active {
  color: #0077b6;
  border-bottom: 2px solid #0077b6;
}
nav {
  font-size: 18px;
}
.header-actions {
  display: flex;
  align-items: center;
}
/* .header-actions > * {
  margin-left: 15px;
} */
.header-actions img {
  cursor: pointer;
}
.create-btn {
  background: #0378a4;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.setting-top {
  margin-bottom: 20px;
}

.settings-header {
  width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.heading h1 {
  font-size: 35px;
  font-weight: 600;
  color: var(--h1);
}

.breadcrumbs2 {
  font-size: 18px;
  font-weight: 500;
}

.breadcrumb-link {
  color: var(--p);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #888;
}

.breadcrumb-active2 {
  color: #0378a4;
  font-weight: 500;
  size: 18px;
  text-decoration: none;
}

.content-wrapper {
  width: 1240px;
  display: flex;
  justify-content: space-between;

  flex-direction: row-reverse;
}
.testing {
  /* height: 3622px; */
  margin: 0px auto;
  width: 1360px;
}

.sidebar {
  display: block !important;
  width: 305px !important;
  background-color: var(--bg-color);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.left-sidebar h2 {
  font-size: 13.58px;
  font-weight: 600;
  color: #8a8a8a;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar-item {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: var(--p);
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.sidebar-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.sidebar-item:hover {
  background-color: #0378a414;
  color: #0378a4;
}

.sidebar-item.active {
  background-color: #0378a414;
  color: #0378a4;
  font-size: 18px;
  font-weight: 600;
  border-radius: 22px;
}

.profile-main {
  flex: 1;
  max-width: 900px;
  background-color: var(--sidebar);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.personal-information-card {
  background-color: var(--sidebar);
  border-radius: 10px;
  padding: 30px 70px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.personal-information-card h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--h1);
}

.personal-information-card > p {
  font-size: 18px;
  font-weight: 400;
  color: var(--p);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.profile-photo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.setting-profile-img img {
  width: 59px;
  border-radius: 50%;
  margin-right: 15px;
}

.profile-icon img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.profile-photo-text h3 {
  font-size: 16px;
  color: var(--h1);
  font-weight: 600;
  margin-bottom: 5px;
}

.profile-photo-text p {
  font-weight: 400;
  font-size: 14px;
  color: var(--p);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}
.form-grou label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--h1);
  margin-bottom: 10px;
}
.form-grou input {
  width: 100%;
  height: 55px;
  background-color: var(--input);
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 15px;
  color: var(--h1);
}
.form-grou input::placeholder {
  padding: 0px;
}
.form-grou input:-webkit-autofill,
.form-grou select:-webkit-autofill,
.form-grou textarea:-webkit-autofill {
  background-color: var(--input) !important; /* Match your dark background */
  color: var(--h1) !important; /* White text */
  -webkit-text-fill-color: var(
    --h1
  ) !important; /* Ensures the text is visible */
  transition: background-color 5000s ease-in-out 0s;
}
.form-grou select {
  width: 100%;
  height: 55px;
  background-color: var(--input);
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  padding: 0 15px;
  box-sizing: border-box;
}
/* input:focus {
  outline: 1px solid #0378a4;
}
select:focus {
  outline: 1px solid #0378a4;
}
textarea:focus {
  outline: 1px solid #0378a4;
} */
input:focus {
  outline: none;
}
select:focus {
  outline: none;
}
textarea:focus {
  outline: none;
}
/* Select styling */
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  background-color: var(--input);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Custom icon using image */
.select-wrapper img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
}
#school,
#country {
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  color: #8a8a8a;
}
.form-grou-text {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  line-height: 21.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.form-grou-text textarea {
  width: 100%;
  height: 200px;
  background-color: var(--input);
  color: #8a8a8a;
  line-height: 26px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 10px;
  resize: vertical;
  padding: 20px;
}
.form-grou-text textarea::placeholder {
  padding: 0px;
}
.account-setting-section,
.notification-container {
  background-color: var(--sidebar);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}
.preferences-container {
  background-color: var(--sidebar);
  padding: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}
.panel-title,
.notification-title,
.preferences-title,
.followed-content-title,
.followed-users-title {
  color: var(--h1);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}
.notification-titl {
  color: var(--h1);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 10px;
}

.panel-description,
.notification-subtitle,
.preferences-subtitle,
.followed-content-description,
.followed-users-description {
  font-size: 18px;
  color: var(--p);
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.preferences-subtitle {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
}
.select-upd-container {
  width: 850px;
  background-color: var(--bg-color);
  border-radius: 8px;
  margin-bottom: 20px;
}
.select-upd-label {
  font-family: "Urbanist";
  display: block;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  color: var(--h1);
  background-color: var(--bg-color);
}
.select-upd-dropdown {
  width: 850px;
  height: 60px;
  padding: 10px;
  border: 1px solid var(--border-color);
  background-color: var(--input);
  border-radius: 10px;
  appearance: none;
  background-image: url("../setting-assets/dropdown-icon.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  color: #8a8a8a;
}
.select-upd-dropdown:focus {
  outline: none;
  border-color: #0378a4;
}
.password-fields {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.password-field {
  width: 48%;
}
.field-label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--h1);
}
.input-container {
  position: relative;
}
.password-input:-webkit-autofill {
  background-color: var(--input) !important; /* Match your dark background */
  color: var(--h1) !important; /* White text */
  -webkit-text-fill-color: var(
    --h1
  ) !important; /* Ensures the text is visible */
  transition: background-color 5000s ease-in-out 0s;
}
.new-password:-webkit-autofill {
  background-color: var(--input) !important; /* Match your dark background */
  color: var(--h1) !important; /* White text */
  -webkit-text-fill-color: var(
    --h1
  ) !important; /* Ensures the text is visible */
  transition: background-color 5000s ease-in-out 0s;
}
.password-input {
  width: 100%;
  height: 55px;
  padding: 20px;
  padding-right: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background-color: var(--input) !important;
}
.password-input {
  background-color: transparent; /* Ya agar aapko white background chahiye toh white daal sakte hain */
  border: 1px solid #ccc; /* Border style, agar chahiye ho */
  color: #000; /* Text color */
}

.password-field .input-container {
  position: relative;
}

.visibility-toggle img {
  width: 20px; /* Adjust size as needed */
  cursor: pointer;
}

.password-input::placeholder {
  padding: 0px;
}
.visibility-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
.account-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.action-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--p);
}

.action-button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.hibernate-btn {
  color: #ffaa13;
  border: 1px solid #ffaa13;
  background-color: transparent;
  width: 252px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border-radius: 90px;
}

.delete-btn {
  color: #ed5e68;
  border: 1px solid #ed5e68;
  background-color: transparent;
  width: 252px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border-radius: 90px;
}

.download-btn {
  color: #0378a480;
  border: 1px solid #0378a480;
  background-color: transparent;
  width: 252px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border-radius: 90px;
}

.preference-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.preference-column {
  width: 48%;
}
.preference-label {
  font-weight: 600;
  font-size: 18px;
  color: var(--h1);
  margin-bottom: 10px;
}
.custom-select {
  width: 100%;
  height: 55px;
  margin-top: 10px;
  font-weight: 400;
  color: #8a8a8a;
  background-color: #f9f9fa;
  padding: 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 16px;
  appearance: none;
  background-image: url("../Assets/dropdown-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 12px auto;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.toggle-title {
  font-size: 18px;
  color: var(--h1);
  margin-bottom: 10px;
  font-weight: 600;
}

.toggle-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--p);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0378a454;
  transition: 0.4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #0378a4;
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.preferences-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 18px;
  color: var(--h1);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-description {
  font-size: 14px;
  font-weight: 400;
  color: var(--p);
  margin-bottom: 15px;
}

.clr-pick-color-picker {
  width: 600px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-color);
}

.clr-pick-color-buttons {
  display: flex;
  gap: 8px;
}

.clr-pick-color-button-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.child1 {
  display: flex;
  align-items: center;
}
.clr-pick-color-button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
}

.clr-pick-color-button:focus {
  outline: none;
}
.clr-pick-color-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.clr-pick-color-indicator.clr-pick-active {
  opacity: 1;
}

.clr-pick-custom-button {
  width: 80px;
  height: 40px;
  background-color: white;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.clr-pick-custom-button:focus {
  outline: none;
}

.clr-pick-color-code {
  width: 96px;
  height: 40px;
  font-family: monospace;
  text-align: center;
  border: 1px solid #e5e5e5;
  background-color: #f9f9fa;
  color: #828282;
  font-size: 18px;
  border-radius: 4px;
}

.clr-pick-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.rdio-nw-updte-size-selector {
  width: 850px;
}
.rdio-nw-updte-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}
.rdio-nw-updte-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #222222;
}
.rdio-nw-updte-label.rdio-nw-updte-active {
  color: #0378a4;
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.rdio-nw-updte-slider-container {
  position: relative;
  height: 16px;
  display: flex;
  align-items: center;
}
.rdio-nw-updte-slider {
  position: relative;
  height: 6px;
  background-color: #e5e5e5;
  flex-grow: 1;
}
.rdio-nw-updte-slider::before,
.rdio-nw-updte-slider::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #e5e5e5;
  top: 50%;
  transform: translateY(-50%);
}
.rdio-nw-updte-slider::before {
  left: 0;
}
.rdio-nw-updte-slider::after {
  right: 0;
}
.rdio-nw-updte-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: #0378a4;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.search-container {
  position: relative;
  margin-bottom: 20px;
}

.searchh-input {
  width: 100%;
  background-color: var(--input);
  border: 1px solid #e5e5e5;
  height: 50px;
  font-size: 14px;
  color: #828282;
  border-radius: 10px;
  padding: 20px;
}
.searchh-input::placeholder {
  padding: 0px;
}

.searchh-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 20px;
}

.followed-topics-list,
.user-list {
  list-style-type: none;
  padding: 0;
}

.topic-item,
.user-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.topic-icon,
.user-avatar {
  margin-right: 10px;
}
.topic-title {
  flex: 1;
}

.topic-title,
.user-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--h1);
}
.user-name {
  color: var(--h1);
  font-size: 14px;
  font-weight: 600;
}

.user-username {
  font-size: 12px;
  color: var(--p);
  font-weight: 400;
}
.unfollow-btn2 {
  width: 140px;
  height: 43px;
  background-color: transparent;
  border: 1px solid #ed5e68;
  color: #ed5e68;
  border-radius: 90px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unfollow-btn {
  width: 140px;
  height: 43px;
  background-color: transparent;
  border: 1px solid #ed5e68;
  color: #ed5e68;
  border-radius: 90px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.settings-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.discard-btn,
.save-btn {
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.discard-btn {
  background-color: var(--engagement-item);
  color: #0378a4;
  font-size: 18px;
  font-weight: 700;
  width: 135px;
  height: 55px;
  border: 1px solid #0378a4;
  border-radius: 90px;
}

.save-btn {
  background-color: #0378a4;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 190px;
  height: 55px;
  border: 1px solid #0378a4;
  border-radius: 90px;
}

/* .user-dropdown {
    position: relative;
    width: 200px;
    margin-top: 20px;
    float: right;
} */
.user-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.user-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  appearance: none;
  background-color: #fff;
}

.dropdown-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #4b5563;
  pointer-events: none;
}

.tab-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: white;
  height: 70px;
  border-radius: 10px;
  width: 343px;
  margin: 20px auto;
}

.tab {
  position: relative;
  padding-bottom: 5px;
  text-align: center;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #8a8a8a;
}

.tab.active {
  color: #0378a4;
  font-weight: 600;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -10px;
  width: 70px;
  height: 2px;
  background-color: #0378a4;
}
@media (min-width: 768px) {
  .tab-container {
    display: none;
  }
}
@media (max-width: 1025px) {
  .header-content {
    display: block;
  }
  .footer {
    max-width: 850px;
    margin: 0px auto;
  }

  .sidebar {
    display: none;
  }
  .settings-header {
    flex-direction: column;
    width: 160px;
  }
  .content-wrapper {
    margin: 0px auto;
    width: 850px;
  }
  .heading h1,
  .breadcrumbs2 {
    width: 270px;
    margin-left: 118px;
  }

  .setting_container {
    margin: 0px auto;
    width: 850px;
  }
}

/* text, size, font  */
@media (max-width: 768px) {
  .personal-information-card h2 {
    font-size: 18px;
  }
  .personal-information-card > p {
    font-size: 14px;
  }
  .form-grou label {
    font-size: 16px;
  }
  label {
    font-size: 16px;
  }
  .panel-title,
  .notification-title,
  .preferences-title,
  .followed-content-title,
  .followed-users-title {
    font-size: 18px;
  }
  .panel-description,
  .action-description,
  .notification-subtitle,
  .preferences-subtitle,
  .followed-content-description,
  .followed-users-description {
    font-size: 14px;
  }
  .notification-titl {
    font-size: 18px;
  }

  .toggle-description {
    font-size: 14px;
  }
  .toggle-info {
    width: 260px;
  }
  .preference-label,
  .toggle-title {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  /* .setting-top {
    display: none;
  } */
  .setting_container {
    width: 343px;
    margin: 0px auto;
  }
  .main-container {
    width: 343px;
  }
  .profile-main {
    width: 343px;
  }
  .testing {
    width: 343px;
  }
  .personal-information-card {
    width: 343px;
    padding: 10px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .account-setting-section,
  .notification-container {
    width: 343px;
    padding: 10px;
  }
  .password-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .password-input {
    width: 100%;
  }
  .password-field {
    width: 100%;
  }
  .account-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .action-info {
    width: 313px;
  }
  .hibernate-btn,
  .delete-btn,
  .download-btn {
    width: 313px;
  }
  .preference-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .preference-column {
    width: 313px;
  }
  .preferences-container {
    width: 343px;
    padding: 10px;
  }
  .select-upd-container,
  .select-upd-dropdown {
    width: 313px;
  }
  .clr-pick-color-picker {
    display: flex;
    flex-direction: column;
    width: 313px;
  }
  .clr-pick-color-buttons {
    width: 320px;
    margin-left: 10px;
  }
  .mobile-disp {
    width: 320px;
  }
  .rdio-nw-updte-size-selector {
    width: 313px;
  }
  .settings-actions {
    width: 343px;
  }
  .clr-pick-color-button,
  .clr-pick-color-button-wrapper {
    width: 20px;
    height: 20px;
  }
  .clr-pick-color-indicator,
  .clr-pick-active {
    width: 30px;
    height: 30px;
  }
  .child1 {
    display: flex;
  }
  .topic-item {
    display: flex;
    flex-direction: column;
  }
  .unfollow-btn {
    margin-top: 20px;
    width: 313px;
  }
  .content-wrapper {
    width: 343px;
  }
  .settings-actions {
    display: flex;
    flex-direction: column;
  }
  .discard-btn,
  .save-btn {
    width: 343px;
  }
}

.sidebar-heading {
  font-family: Urbanist;
  font-size: 13.58px;
  font-weight: 600;
  line-height: 18.11px;
  letter-spacing: 0.1em;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #8a8a8a;
}
.side-navigation img {
  /* width: 20px;
  height: 20px; */
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(77%) sepia(0%) saturate(1%)
    hue-rotate(335deg) brightness(89%) contrast(85%);
}

.Our-heading {
  font-weight: 600;
  color: var(--h1);
}
.anyo-dropdown {
  font-family: Urbanist;
  font-size: 18px;
  font-weight: 600;
  color: #0378a4;
  padding: 10px !important;
  background-color: var(--engagement-item) !important;
  border: 1px solid #0378a4;
  border-radius: 40px;
  padding: 10px;
  background-color: var(--body-bg);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.anyo-dropdown:focus {
  outline: none;
  border-color: #0378a4;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.cmnt-pst-comment {
  display: flex;
  gap: 12px;
  padding: 16px;
  max-width: 42rem;
  margin-top: 10px;
}

.cmnt-pst-avatar-container {
  position: relative;
  flex-shrink: 0;
}

.cmnt-pst-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f3f4f6;
}

.cmnt-pst-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmnt-pst-online-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border: 2px solid white;
  border-radius: 50%;
}

.cmnt-pst-comment-content {
  flex: 1;
}

.cmnt-pst-comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.cmnt-pst-username {
  font-weight: 500;
  color: var(--h1);
}

.cmnt-pst-timestamp {
  font-size: 0.875rem;
  color: #6b7280;
}

.cmnt-pst-comment-text {
  color: var(--p);
}

.cmnt-pst-post {
  border-radius: 8px;
  margin-bottom: 20px;
}

#liked-post {
  display: block;
}

#commented-post {
  display: none;
}
#shared-post {
  display: none;
}
