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

body {
  font-family: urbanist;
}
/* :root {
  --h1: #222222;
  --bg-color: #ffffff;
  --border-color: #e5e5e5;
  --input-color: #f9f9fa;
  --anouncement-post: #5a5a5a;
}
.dark-mode {
  --anouncement-post: #90949c;
  --h1: white;
  --bg-color: #0d0d11;
  --border-color: #14141f;
  --input-color: #343444;
} */
.container {
  width: 1240px;
  margin: 0 auto;
  padding: 20px 20px;
}
.feed-container {
  width: 1240px;
  margin: 0 auto;
}
.feed-header {
  width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.feed-title {
  font-size: 35px;
  font-weight: 600;
  color: var(--h1);
}
.feed-breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 18px;
  color: #5a5a5a;
  font-weight: 500;
  cursor: pointer;
}
.feed-breadcrumb a {
  font-size: 18px;
  color: #5a5a5a;
  font-weight: 500;
  cursor: pointer;
}
.feed-breadcrumb-current:hover {
  text-decoration: underline;
}
.feed-breadcrumb-current {
  color: #0378a4;
  font-weight: 500;
}
.feed-layout {
  display: flex;
  width: 1240px;
  gap: 30px;
}
.pub-tavern-chat {
  width: 817px;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
}
.pub-bar-top {
  background-color: var(--sidebar);
  border-bottom: 1px solid var(--border-color);
  padding-top: 2rem;
  padding-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}
.pub-menu-options {
  display: flex;
  gap: 1rem;
}
.pub-menu-item {
  display: flex;
  font-size: 22px;
  font-weight: 600;
  color: #8a8a8a;
  text-decoration: none;
}
.pub-menu-item.pub-active-brew {
  color: #0378a4;
  border-bottom: 2px solid #0378a4;
  /* padding: 0px 10px; */
  padding-bottom: 20px;
}
.pub-menu-icon {
  margin-right: 0.5rem;
  margin-top: 2px;
}
.pub-conversation-area {
  background-color: var(--sidebar);

  padding: 15px 30px;
}
.pub-patron-speech {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 35px;
}
.pub-patron-mug {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #e5e7eb;
}
.pub-speech-bubble {
  flex: 1;
}
.pub-patron-name {
  font-weight: 600;
  margin-right: 0.5rem;
  color: var(--h1);
}
.pub-speech-time {
  font-size: 0.75rem;
  color: #6b7280;
}
.pub-speech-text {
  width: 669px;
  margin-top: 0.25rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--p);
}
.txt-active {
  color: #0378a4;
}
.pub-cheers-reactions {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.pub-cheer {
  /* background-color: #e5e7eb; */
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: var(--p);
}
.pub-chat-container {
  max-width: 600px;
}
.pub-date-header {
  text-align: center;
  color: #8e8e8e;
  font-size: 12px;
  margin-bottom: 20px;
}
.pub-message-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.pub-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
}
.pub-message-body {
  flex-grow: 1;
}
.pub-user-info {
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  color: var(--h1);
}
.pub-message-time {
  color: #8e8e8e;
  font-size: 12px;
  font-weight: normal;
  margin-left: 8px;
}
.pub-message-content {
  margin-bottom: 8px;
  color: var(--p);
}
.pub-attachment-box {
  background-color: var(--post-bg);
  border: 1px solid #e4e6eb;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  max-width: 300px;
}
.pub-attachment-icon {
  width: 32px;
  height: 40px;
  margin-right: 12px;
}
.pub-attachment-info {
  font-size: 13px;
}
.pub-file-name {
  font-weight: 600;
  color: var(--h1);
}
.pub-file-details {
  color: #8e8e8e;
  font-size: 11px;
  margin-top: 2px;
}
.sidebar {
  display: block !important;
  width: 390px !important;
  background-color: var(--bg-color) !important;
  border-radius: 10px;

  border: 1px solid var(--border-color) !important;
  padding: 25px !important;
}

.feed-sidebar-icon {
  margin-right: 8px;
  cursor: pointer;
}
.feed-activity-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  margin-top: 20px;
}
.feed-user-avatar {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: #e0e6ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #34495e;
}
.feed-user-avatar img {
  border-radius: 50%;
}

.live-feed {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  background: white;
}

.live-feed-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--sidebar);
  border: none;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}

.chevron {
  width: 25px;
  margin-right: 8px;
  transition: transform 0.2s ease !important;
}

.chevron.collapsed {
  transform: rotate(-180deg) !important;
}

.live-feed-title {
  font-family: Urbanist;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}

.live-feed-content {
  display: block;
  transition: max-height 0.3s ease-out;
  max-height: 1000px;
  overflow: hidden;
  background-color: var(--sidebar);
}

.live-feed-content.collapsed {
  max-height: 0;
}

.feed-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid #e2e8f0;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  flex-shrink: 0;
}

.feed-item-content {
  flex: 1;
}

.feed-item-header {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.user-name,
.category {
  font-weight: 500;
}

.posted-in {
  color: #64748b;
  font-size: 14px;
}

.feed-item-title {
  color: #475569;
  font-size: 14px;
  margin-bottom: 4px;
}

.time-ago {
  color: #94a3b8;
  font-size: 12px;
}
.feed-activity-content {
  flex: 1;
}
.small-jd {
  font-size: 12px;
  color: #7f8c8d;
}
.feed-activity-user {
  font-weight: 600;
  font-size: 15px;
  color: var(--h1);
}
.feed-activity-context {
  font-size: 15px;
  color: var(--h1);
  font-weight: 600;
}
.feed-activity-text {
  font-size: 14px;
  color: #34495e;
  margin: 4px 0;
}
.feed-activity-time {
  font-size: 12px;
  color: #95a5a6;
}
.sidebar-container {
  width: 370px;
  background-color: var(--bg-color);
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.toggle-button {
  display: flex;
  align-items: center;
  padding: 10px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.toggle-button:hover {
  background-color: #f0f0f0;
}
.navigation-list {
  list-style-type: none;
  padding: 0;
  margin: 15px 0;
}
.nav-link {
  display: flex;
  align-items: center;
  color: #555;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  background-color: var(--bg-color);
}
.icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
.live-feed-icon-txt {
  color: var(--h1);
  font-size: 20px;
  font-weight: 700;
}
.prv-lock-sp {
  display: flex;
  margin-top: 15px;
}
.prv-lock-sp1 {
  display: flex;
  align-items: center;
}

.nav-link.active {
  background-color: #e6f7ff;
  color: #1890ff;
  border-radius: 8px;
}
.prv-main-plus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e5e5;
  width: 340px;
}
.sp-plus {
  margin-top: 10px;
}
.nav-link.emphasized {
  display: flex;
  align-items: center;
  font-size: 20px;
  width: 370px;
  font-weight: 600;
  padding-bottom: 10px;
  color: #333;
}
.secnd-mg {
  display: flex;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #333;
}
.pblic-workspce-icn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pblic-workspce-icn,
.plus-img {
  margin-top: 10px;
}
.search-wrapper {
  position: relative;
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.Search-form-padd {
  position: relative;
  width: 320px;
}

.search-input {
  width: 90%;
  padding: 5px 10px 5px 35px;
  height: 40px;
  border: 1px solid #0378a4;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
  box-sizing: border-box;
  background-color: #e5e5e5;
  color: black;
}

.search-input:focus {
  outline: none;
  border-color: #0378a4;
}

.Search-form-padd input::placeholder {
  text-align: left;
}

.search-icon-feed {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #bfbfbf;
  pointer-events: none;
}

.options-button {
  margin-left: 10px;
  background: none;
  border: none;
  cursor: pointer;
  width: 10px;
}
.options-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.create-button1 {
  width: 332px;
  background-color: #0378a4;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 84px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Add these new styles */
.dropdown-wrapper {
  position: sticky;
  bottom: 16px; /* Adjust as needed */
  background-color: white;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #e5e5e5;
}

.ui-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.ui-dropdown-button {
  width: 100%;
  background-color: var(--bg-color);
  color: black;
  padding: 10px;
  font-size: 16px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Live Feed app-wrapper  */

.app-wrapper {
  /* background-color: white; */
  border-radius: 8px;
}

/* .top-barr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-top: 10px;
  background-color: var(--bg-color);
}

.icon-group {
  display: flex;
  gap: 8px;
}

.icon-placeholder {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
} */

.catchp-nav-menu {
  position: relative;
  width: 100%;
  max-width: 300px;
  background-color: var(--sidebar);
}

.catchp-menu-collapsed,
.catchp-menu-expanded {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.catchp-menu-icons {
  width: 370px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 1px;
}

.catchp-menu-item {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.catchp-menu-toggle {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.catchp-menu-toggle span {
  margin-left: 10px;
  font-family: Urbanist;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}

.catchp-menu-expanded {
  width: 370px;

  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.catchp-menu-header {
  display: flex;
  align-items: center;
  background-color: var(--sidebar);
  border: none;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
.mdl-nav-labl {
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #5a5a5a;
}
.catchp-menu-header span {
  margin-left: 10px;
  font-family: Urbanist;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}

.catchp-menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.catchp-menu-items .catchp-menu-item {
  width: 100%;
  justify-content: flex-start;
  gap: 15px;
  border-radius: 4px;
  background-color: var(--sidebar);
}

.catchp-hidden {
  display: none;
}

.catchp-icon img {
  width: 18px;
}
.top-search-area {
  width: 355px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-color);
}

.search-input-wrapper {
  position: relative;
}

.search-input-Community-Lounge {
  width: 300px;
  height: 40px;
  background-color: var(--input-color);
  color: var(--input-txt-clr);
  padding: 4px;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid #0378a4;
  border-radius: 5px;
  font-size: 14px;
}
.search-input-Community-Lounge:focus {
  outline: #0378a4;
}
.search-input-Community-Lounge::placeholder {
  font-family: "Urbanist";
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  padding: 0px;
}
.search-icon1 {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #6b7280;
}

.options-menu {
  margin-left: 8px;
  cursor: pointer;
}

.main-content {
  padding: 20px 0px;
  background-color: var(--bg-color);
}

.community-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.community-avatar {
  width: 28px;
  margin-right: 12px;
}

.community-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.channels-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.expand-icon {
  width: 15px;
  color: #6b7280;
  margin-right: 8px;
}

.channels-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--h1);
  margin: 0;
}

.channels-list {
  background-color: var(--bg-color);
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 28px;
  margin-bottom: 20px;

  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
  cursor: pointer;
}
.channel-item p {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;

  letter-spacing: 0.01em;
  text-align: left;
}
.channel-item1 {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 16px;
  font-weight: 500;
  color: #0378a4;
  cursor: pointer;
}

.channel-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
  border-radius: 6px;
}

.show-more-button {
  background: none;
  border: none;
  color: #0378a4;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
}

/* .message-composer {
  width: 737px;
  background-color: var(--post-bg);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

/* .formatting-toolbar {
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #e0e0e0;
} */
/* .drp-mini-dropdown-content {
  display: none;
  transition: all 0.3s ease;
}

.drp-mini-dropdown-content.open {
  display: block;
}

.chevron {
  transition: transform 0.3s ease;
  transform: rotate(-180deg) !important;
} */

.formatting-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin: 0 2px;
  border-radius: 4px;
}
.formatting-button-pls-bg {
  border: none;
  cursor: pointer;
}

.formatting-button:hover {
  background-color: #f0f0f0;
}

.toolbar-divider {
  width: 1px;
  height: 24px;
  background-color: #e0e0e0;
  margin: 0 8px;
}
.toolbar-divider-create {
  float: right;
}

.message-entry {
  display: flex;
  align-items: center;
  padding: 0px 10px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 8px;
}

.avatar-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-field {
  flex-grow: 1;
  border: none;
  outline: none;
  height: 95px;
  font-size: 14px;
  background-color: var(--post-bg);
}

.submit-message {
  background-color: #0378a4;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
}
.tools-for-mobile {
  display: none;
}

.editor-div-resposive {
  display: flex;
  padding: 10px;
  justify-content: flex-end;
}
.formatting-button svg {
  width: 20px;
  height: 20px;
}
.submit-message svg {
  width: 20px;
  height: 20px;
}
/* .create-new-toolbar-sms {
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
} */
.date-showcase {
  width: 715px;
  display: flex;
  align-items: center;
  border-radius: 15px;
}
.timeline-marker {
  width: 285px;
  height: 2px;
  background-color: #e5e5e5;
}
.date-focal-point {
  flex: 1;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.01em;
  text-align: left;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;

  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  height: 540px;
  width: 90%;
  max-width: 790px;
  border-radius: 8px;
  overflow: hidden;

  border-radius: 10px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  font-size: 24px;
  font-weight: 600;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
  height: 90px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--h1);
  margin: 0;
}

.close-modal {
  font-size: 28px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label,
.visibility {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--h1);
  margin-bottom: 10px;
}

.modal-input {
  width: 100%;
  height: 70px;

  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 16px;
  color: var(--h1);
}

.modal-input::placeholder {
  color: #999;
  font-size: 18px;
  padding: 10px;
}

.modal-create-btn {
  width: 100%;
  padding: 12px;
  height: 55px;
  background-color: #0378a4;
  color: white;
  border: none;
  border-radius: 84px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
}

.modal-create-btn:hover {
  background-color: #026288;
}
.modal-body {
  padding: 40px;
  height: 50vh;
  overflow-y: auto;
}
/* New radio button styles */
.radio-group {
  margin-bottom: 24px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.radio-option input[type="radio"] {
  margin-right: 12px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  flex-direction: column;
}

.radio-title {
  font-family: Urbanist;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.01em;
}

.radio-description {
  font-family: Urbanist;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.01em;
  color: #5a5a5a;
}

/* Description textarea */
.description-input {
  width: 100%;
  height: 182px;

  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  color: var(--h1);
  resize: none;
}
::placeholder {
  font-family: urbanist;
  padding: 20px;
}

.modal-create-btn {
  width: 100%;
  height: 44px;
  background-color: #0378a4;
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 24px;
}

.modal-create-btn:hover {
  background-color: #026288;
}
/* -=-----------Search button models------------------------------------- */

.container-mol {
  background-color: white;
  border-radius: 0.5rem;
}

.modi-srch-container-mol {
  position: relative;
}

.modi-lbl {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.01em;
  color: #5a5a5a;
}

.modi-srch-btn {
  background: none;
  border: none;
  cursor: pointer;
  /* padding: 8px; */
}

.search-iconss {
  width: 24px;
  height: 24px;
  color: #4b5563;
}

.modi-srch-popup {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.modi-srch-popup.modi-srch-open {
  width: 314px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-bottom: 10px;
  margin-left: -8px;
}

.active-modi-lbl {
  background-color: #e0ecee !important;
  color: #0378a4 !important;
}

.modi-srch-popup-content {
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.modi-srch-tabs {
  display: flex;
  gap: 1rem;
}

.modi-srch-popup.modi-srch-open::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
  z-index: 1;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.modi-srch-tab {
  padding: 0.5rem 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.modi-srch-tabs-mn {
  background-color: white;
  padding: 8px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modi-srch-tab.modi-srch-active {
  width: 50%;
  background-color: #f5fafb;
  color: #0378a4;
  font-family: Urbanist, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
}

.modi-srch-tab:not(.modi-srch-active) {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  color: #8a8a8a;
}

.modi-srch-search-box {
  margin-bottom: 1rem;
  position: relative;
}

.modi-srch-search-input {
  width: 100%;
  height: 42px;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 0.875rem;
  background-color: #f9f9fa;
}

.modi-srch-search-input::placeholder {
  padding: 0px;
}

.modi-srch-search-icon {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #828282;
}

.modi-srch-channel-section {
  margin-bottom: 1rem;
}

.modi-srch-section-title {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  margin-bottom: 0.5rem;
  color: #828282;
}

.modi-srch-channel-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.modi-srch-channel-item:hover {
  background-color: #e0ecee;
  color: #0378a4;
}

.modi-lbl:hover {
  color: #0378a4;
}

#nestedPopup {
  left: -24%;
  bottom: 36px;
  margin-left: 10px;
  border: 1px solid #e5e5e5;
}

#nestedPopup.modi-srch-open::after {
  left: 14px;
  bottom: -10px;
  transform: rotate(-45deg);
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  border-right: none;
  border-top: none;
}

@font-face {
  font-family: "Urbanist";
  src: url("/fonts/Urbanist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Urbanist";
  src: url("/fonts/Urbanist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Urbanist";
  src: url("/fonts/Urbanist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

.unique-tutorial-container {
  font-family: "Urbanist";
  background-color: white;
  width: 280px;
}

.unique-tutorial-title {
  font-family: Urbanist;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #828282;
}

.unique-tutorial-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-tutorial-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #5a5a5a;
}
.active-itm {
  background-color: #f5fafb;
  color: #0378a4;
}
.unique-tutorial-item:hover {
  background-color: #f5fafb;
  color: #0378a4;
}

.unique-hash-icon {
  width: 16px; /* Adjust as needed */
  height: 16px; /* Adjust as needed */
  margin-right: 8px;
  display: inline-block;
}

.lean-prover-button {
  background-color: #0378a414;
  border: none;
  border-radius: 66px;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: #0378a4;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.01em;
}

.lean-prover-button img {
  width: 20px;
  height: 20px;
}

.close-icon {
  margin-left: auto;
  font-size: 18px;
  font-weight: bold;
}

.mini-drp {
  width: 370px;
  border-radius: 5px;
  overflow: hidden;
}
.mini-drp-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}
.mini-drp-header svg {
  margin-right: 10px;
  transition: transform 0.3s;
}
.mini-drp-header.open svg {
  transform: rotate(180deg);
}
.mini-drp-content {
  display: block;
  padding: 0;
  margin: 0;
}
.mini-drp-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  background: #fff;
  transition: background 0.3s;
}
.mini-drp-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.mini-drp-item:hover {
  background: #f0f0f0;
}
.mini-drp-chevron {
  width: 20px;
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  .sidebar.show {
    padding: 30px 10px !important;
    overflow-x: hidden;
  }
  .create-button1 {
    width: 310px;
    margin-bottom: 20px;
  }
  .app-wrapper {
    width: 300px;
  }
  .pub-menu-options {
    display: flex;
    gap: 10px;
  }
  .feed-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
  }
  .feed-layout {
    display: flex;
    width: 100%;

    justify-content: center;
  }
  .pub-conversation-area {
    padding: 10px;
  }
  .pub-speech-text {
    width: 100%;
    color: var(--p);
  }
  .feed-container {
    width: 100%;
  }
  .message-composer {
    width: 100%;
  }
  .tools-for-mobile {
    display: block;
  }
  .editor-div-desktop {
    display: none !important;
  }
  .date-showcase {
    width: 100%;
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.01em;
  }
  .timeline-marker {
    width: 90px;
  }
  .pub-menu-item {
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 600;
    line-height: 25.33px;
    letter-spacing: 0.01em;
  }
  .pub-bar-top {
    padding-left: 10px;
  }
}
.editor-div-desktop {
  display: block;
}
.editor-tools-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 786px) {
  .feed-layout {
    width: 95%;
    margin: auto;
    height: fit-content;
    margin-bottom: 20px;
  }
  /* .message-composer{
    width: 330px;
  } */
}

.drp-mini-dropdown-header {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.drp-mini-dropdown-content {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
}

.drp-mini-dropdown-content.open {
  display: block;
  width: 370px;
}

.drp-mini-dropdown-content li {
  padding: 8px 10px;
  background-color: #fff;
}

.drp-mini-dropdown-content li:last-child {
  border-bottom: none;
}

.drp-mini-dropdown-content li:hover {
  background-color: #f9f9f9;
}

.drp-d-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.drp-d-mini:hover {
  background-color: #0378a40f;
  cursor: pointer;
}
.menu-container-unique a {
  color: #5a5a5a !important;
}
.menu-container-unique a:hover {
  color: #0378a4 !important;
}
.Channels-feed-title {
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}
.drop-titel {
  font-family: "Urbanist";
  color: var(--p);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.live-feed-headersec {
  display: flex;
  display: flex;
  align-items: center;
  height: 20px;
  cursor: pointer;
  background: white;
  border: none;
  width: 370px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
  margin-top: 10px;
}
.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}
.live-drp-header {
  width: 100%;
  display: flex;
  align-items: center;
  border: none;
  background-color: var(--sidebar);
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  margin-top: 10px;
}
.chevronsec,
.Channels-feed-titlesec {
  margin-top: 30px;
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #222222;
}
.chevronsec {
  width: 25px;
  margin-right: 10px;
}
.live-feed-headersec {
  margin-top: 20px;
}
.dropdown7 {
  margin-bottom: 30px;
}

.lean_teaching.red-bg {
  background-color: red; /* Background turns red when dropdown is open */
  color: white;
}
.menut {
  width: 200px;
  margin: 20px;
}
.drp-d-mini {
  font-family: Arial, sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.drp-d-mini img {
  width: 25px;
  height: 25px;
}
.drop-titel {
  margin: 0;
  font-family: "Urbanist";
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--p);
}
.menu-item-beta,
.menu-item-betaa,
.menu-item-quantum,
.menu-item-breakdown,
.menu-item-logic,
.menu-item-algo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.menu-item-beta {
  margin-top: 30px;
  border-top: 1px solid #0378a433;
  padding-top: 10px;
}
.menu-container-unique {
  background-color: #0378a40f;
  padding: 10px 10px;
  display: none;
  margin-top: -35px;
}
.mb-lst {
  margin-bottom: 30px;
}
.dropdown-content {
  display: none;
  margin-top: 10px;
  padding-left: 40px;
}
.dropdown-content a {
  display: block;
  text-decoration: none;
  color: #333;
  margin: 5px 0;
  font-size: 14px;
}
.dropdown-content a:hover {
  color: #007bff;
}

.menu-itemm {
  cursor: pointer;
  background-color: white;
  padding: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-content {
  display: none; /* Initially hidden */
  background-color: #fff;
  margin-top: -1px; /* To align with the menu item */
  padding: 10px;
}
.dp-mdl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-content div {
  padding: 5px 0;
  cursor: pointer;
}

.dropdown-content div:hover {
  background-color: #f9f9f9;
}

.tox .tox-menubar {
  display: none !important;
}
.tox,
.tox-tinymce {
  width: 100%;
}
.tox-statusbar {
  display: none !important;
}
.submit-message {
  display: none !important;
}

.catchp-icon {
  display: flex;
}
.catch--lable {
  margin-left: 10px;
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}
.catchi-dri-nw-nav-container {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.catchi-dri-nw-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px;
  border-bottom: 1px solid #e0e0e0;
}

.catchi-dri-nw-nav-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.catchi-dri-nw-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.catchi-dri-nw-toggle-btn.catchi-dri-nw-rotated {
  transform: rotate(180deg);
}

.catchi-dri-nw-header-icons {
  display: flex;
  gap: 8px;
  transition: opacity 0.3s ease;
}
.catchi-dri-nw-header-icons img {
  width: 18px;
}
.catchi-dri-nw-nav-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.catchi-dri-nw-nav-content.catchi-dri-nw-open {
  max-height: 300px;
}

.catchi-dri-nw-nav {
  display: flex;
  flex-direction: column;
  padding: 8px;
}

.catchi-dri-nw-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.catchi-dri-nw-nav-item img {
  width: 20px;
}

.catchi-dri-nw-nav-container h2 {
  margin: 0;
  font-family: "Urbanist";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
  cursor: pointer;
}

.catchi-dri-nw-nav-container i {
  width: 16px;
  height: 16px;
}
.nw-cm-label {
  font-family: "Urbanist";
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
}
.icon img {
  margin-right: 10px;
  filter: brightness(1.2) saturate(100%) invert(33%) sepia(0%) hue-rotate(0deg)
    contrast(85%);
}
