@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", serif;
  background-color: #f9f9fa;
  margin: 0;
  color: #8a8a8a;
}
/* :root{
  --h1:#222222;
  --bg-color:#ffffff; 
  --border-color:#e5e5e5;
  --input-color:#f9f9fa:
}
.dark-mode {
  --h1:white;
  --bg-color:#0d0d11;
  --border-color:#14141f; 
  --input-color:#343444;
} */
.popup {
  display: none;
  position: absolute;
  right: 200px;
  top: 300px;
  /* Add other styling as needed */
}

header {
  background-color: var(--bg-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo {
  font-size: 24px;
  font-weight: bold;
}
navbar a {
  text-decoration: none;
}

navbar a.active {
  width: 100%;
  color: #0077b6;
  border-bottom: 2px solid #0077b6;
}
navbar {
  font-size: 18px;
}
.header-actions {
  display: flex;
  align-items: center;
}
/* /* .header-actions > * {
  margin-left: 15px;
} */
*/ .create-btn {
  background: #0378a4;
  color: var(--bg-color);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ddd;
}
.header-content2 {
  display: flex;
  gap: 20px;
  align-items: center;
}
.notes-container {
  width: 1240px;
  margin: 0 auto;
}
.nts_container {
  width: 765px;
}

.hl-wrapper {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hl-content-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 25px;
}

.hl-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  text-align: left;
  color: var(--h1);
}

.hl-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #0378a4 50.666%, #cecece 16.666%);
}

.nts_section {
  margin-bottom: 8px;
}

.nts_section_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
}
a {
  text-decoration: none;
}

.nts_section_header.active {
  width: 100%;
  background-color: rgba(3, 120, 164, 0.05);
  color: #0378a4;
}
.nts_section_header {
  color: var(--p);
}

.nts_section_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
}
.nts_section_content {
  display: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: var(--p);
  padding-left: 16px;
}

.nts_section_content.active {
  display: block;
}

.nts_section_item {
  padding: 8px;
  margin: 8px 0;
}
.custom-trigger-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 235px;
  height: 55px;
  gap: 8px;
  background-color: var(--bg-color);
  color: #0378a4;
  border: 1px solid #0378a4;
  border-radius: 84px;
  cursor: pointer;
  margin-bottom: 10px;
  margin-left: 10px;
}

.custom-trigger-icon {
  width: 20px;
  height: 20px;
}

.custom-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.custom-modal-container {
  background-color: var(--sidebar);
  margin: 10% auto;
  width: 1042px;
  height: 392px;
  border-radius: 16px;
  overflow: hidden;
  border-bottom: 7px solid #0378a4;
}

.custom-modal-header {
  padding: 24px 50px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}

.custom-modal-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
  margin: 0;
}
.custom-close-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 25px;
  color: var(--h1);
}

.custom-modal-header {
  display: flex;
  justify-content: space-between;
}

.custom-form-container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  background-color: var(--sideabr);
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.custom-form-group {
  margin-bottom: 24px;
}

.custom-form-label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: var(--h1);
  margin-bottom: 18px;
}

.custom-form-input {
  width: 936px;
  height: 72px;
  font-size: 16px;
  border: none;
  background-color: var(--input);
  color: var(--input-txt-clr);
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  padding: 0px 20px;
}
.custom-form-input::placeholder {
  padding: 0px;
}

.custom-submit-button {
  width: 936px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background-color: #0378a4;
  color: var(--bg-color);
  border: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.01em;
  border-radius: 49px;
  cursor: pointer;
  margin-top: 10px;
}

.nts_chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.nts_section_header:hover {
  background-color: #0378a40d;
}
.nts_section_header.active .nts_chevron {
  transform: rotate(180deg);
}
.notes-header {
  width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
.notes-title {
  font-size: 35px;
  font-weight: 600;
  color: var(--h1);
}
.notes-breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 18px;
  color: var(--p);
  font-weight: 500;
  cursor: pointer;
}
.nts-brdr {
  border-bottom: 1px solid #e5e5e5;
  margin-top: 10px;
}
.last-btn-modl {
  width: 250px;
  margin-top: 15px;
  margin-left: 16px;
}
.notes-breadcrumb a {
  display: flex;
  gap: 10px;
  font-size: 18px;
  color: var(--p);
  font-weight: 500;
  cursor: pointer;
}
.notes-breadcrumb a:hover {
  text-decoration: underline;
}
.notes-breadcrumb-current:hover {
  text-decoration: underline;
}
.notes-breadcrumb-current {
  color: #0378a4;
  font-weight: 500;
}
.notes-layout {
  display: flex;
  width: 1240px;
  justify-content: space-between;
}
.nts-pub-tavern-chat {
  width: 817px;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--sidebar);
}
.nts-pub-tavern-pdn {
  padding: 25px;
  background-color: var(--sidebar);
  border-radius: 0.5rem;
}
/* Sidebar Notes Chat */

.sidebar {
  display: block !important;
  max-width: 392px;
  height: 100%;
  background-color: var(--bg-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 30px;
}

.nts-crd-card {
  max-width: 32rem;
  background: var(--bg-color);
}

.nts-crd-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.nts-crd-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.01em;
  text-align: left;
  color: var(--h1);
}

.nts-crd-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  letter-spacing: 0.01em;
  color: var(--p);
  text-align: left;
  display: flex;
  margin-top: 10px;
}

.nts-crd-menu-button {
  border: none;
  background: transparent;
  cursor: pointer;
  /* display: flex;
    align-items: center;
    justify-content: center; */
  margin-top: 58px;
}

.nts-crd-dots {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nts-crd-dot {
  width: 0.25rem;
  height: 0.25rem;
  background-color: #666;
  border-radius: 50%;
}

.nts-crd-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.nts-crd-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.ntsimg {
  width: 34px;
  border-radius: 20px;
}

.nts-crd-author-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0.01em;
  color: var(--h1);
}

.nts-crd-description {
  width: 333px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.01em;
  color: var(--p);
}

.nts-crd-metrics {
  display: flex;
  gap: 1.5rem;
  margin-top: 20px;
}

.nts-crd-metric {
  width: 81px;
  height: 41px;
  border-radius: 66px;
  font-weight: 700;
  font-size: 14px;
  gap: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0378a40d;
  color: #0378a4;
  border: none;
  cursor: pointer;
}

.nts-crd-metric-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.crs-header {
  position: relative;
  padding-bottom: 25px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.crs-header h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 8.8px;
  text-align: center;
  color: var(--h1);
}

.crs-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #0378a4 50.666%, #cecece 16.666%);
}

.crs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 15px;
}

.crs-item {
  border-radius: 0.5rem;
  margin-top: 20px;
  overflow: hidden;
}

.crs-link {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  letter-spacing: 0.01em;
  text-align: left;
  color: var(--p);
}

.crs-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
}

.crs-view-more {
  margin-top: 1rem;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #0378a4;
  margin-bottom: 20px;
}

.ngtn_header_text {
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  color: var(--h1);
  margin-bottom: 20px;
  margin-top: 20px;
}

.ngtn_gradient_divider {
  height: 2px;
  margin-bottom: 16px;
  background: linear-gradient(to right, #0378a4 50.666%, #cecece 16.666%);
}

.ngtn_navigation_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 30px;
}

.ngtn_menu_item {
  display: flex;
  align-items: center;
  height: 45px;
  gap: 12px;
  padding: 0px 12px;
  text-decoration: none;
  color: #64748b;
  border-radius: 8px;
  transition: all 0.2s;
}

.ngtn_menu_item:hover {
  color: #0378a4;
  background-color: rgba(3, 120, 164, 0.08);
}

.ngtn_menu_item.ngtn_active_state {
  background-color: rgba(3, 120, 164, 0.08);
  color: #0378a4;
}

.ngtn_icon_element {
  width: 16px;
  height: 16px;
}

/* Tab Responsiveness */
@media (max-width: 1025px) {
  .popup {
    display: none;
    position: absolute;
    right: 10px;
    top: 120px;
    /* Add other styling as needed */
  }
  .sidebar {
    display: none;
    width: 343px !important;
    padding: 10px;
  }
  .nts-crd-card {
    width: 304px;
    margin: 0 auto;
  }
  .nts-crd-description {
    width: 100%;
    margin: 0 auto;
  }
  .ngtn_content_box {
    width: 304px;
    margin: 0 auto;
  }
  .crs-container {
    width: 304px;
    margin: 0 auto;
  }
  .notes-header {
    display: flex;
    flex-direction: column;
    width: 815px;
  }
  .notes-layout {
    width: 815px;
  }
  .notes-title {
    display: flex;
    margin-left: -143px;
    font-size: 24px;
    width: 670px;
  }
  .notes-container {
    max-width: 815px;
  }

  .notes-breadcrumb,
  .notes-breadcrumb-current,
  .notes-breadcrumb a {
    font-size: 16px;
  }
  .notes-breadcrumb {
    width: 815px;
  }
  .header-content {
    display: none;
  }
  .notes-container {
    width: 100%;
    margin: 0px auto;
  }
  /* footer{
    display: none;
  } */
}
/* Responsiveness */

@media (max-width: 768px) {
  .container {
    display: none;
  }
  .notes-container {
    width: 343px !important;
    margin: 0px auto;
  }
  /* .notes-navbar-main{
    display: none;
  } */
  /* .nts-pub-tavern-chat{
    display: flex;
  } */
  .notes-layout {
    width: 343px !important;
    margin: 0px auto;
  }
  .popup-menu {
    display: none;
  }
  .nts-pub-tavern-pdn {
    max-width: 320px;
    padding: 0px;
  }
  .nts_section {
    width: 320px;
  }
  .nts_container {
    width: 343px;
    margin: 0px auto;
  }
  .nts-pub-tavern-chat {
    max-width: 343px;
    padding: 10px;
  }
  .nts-brdr {
    width: 313px;
  }
  .notes-breadcrumb,
  .notes-breadcrumb-current,
  .notes-breadcrumb a {
    font-size: 16px;
  }
  .notes-breadcrumb {
    width: 313px;
  }
  .nts-pub-tavern-chat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }
}

/* Model Responsiveness */

@media (max-width: 768px) {
  .custom-modal-container {
    max-width: 313px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--sideabr);
    z-index: 1000;
    height: 350px;
    border-radius: 10px;
  }

  .custom-form-input {
    width: 280px;
  }
  .custom-submit-button {
    width: 280px;
  }
  .custom-modal-title {
    font-size: 22px;
    padding: 0px;
  }
  .custom-modal-header {
    background-color: var(--sidebar);
    width: 313px;
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
  }
  .custom-close-button img {
    width: 17px;
  }
  .custom-form-container {
    background-color: var(--sidebar);
    margin-top: 0px;
  }
  .custom-form-label {
    padding: 0px 0px;
    font-size: 20px;
  }
}

/* breadcrumb responsive screen */
@media (max-width: 768px) {
  .notes-header {
    display: flex;
    flex-direction: column;
    width: 340px;
  }
  .notes-title {
    margin-left: -143px;
    font-size: 24px;
    width: 313px;
    margin-left: 1px;
  }
  .notes-breadcrumb,
  .notes-breadcrumb-current,
  .notes-breadcrumb a {
    font-size: 16px;
  }
  .notes-breadcrumb {
    margin-left: 1px;
  }
}

/* footer responsive */
@media (max-width: 768px) {
  /* footer{
    display: none;
  } */
}
