/* [project]/components/Navbar/Navbar.css [app-client] (css) */
.main-nav {
  z-index: 1002;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}

.left-nav {
  align-items: center;
  gap: 30px;
  display: flex;
}

.title {
  color: #0466c8;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.dropdown {
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  transition: background .2s;
  display: flex;
}

.dropdown:hover {
  background: #f9f9f9;
}

.dropdown p {
  color: #555;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.right-nav {
  align-items: center;
  gap: 20px;
  display: flex;
}

.icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
  transition: transform .2s;
}

.icon:hover {
  transform: scale(1.1);
}

.hamburger {
  cursor: pointer;
  color: #0466c8;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 26px;
  display: none;
}

.overlay {
  z-index: 998;
  background: rgba(0, 0, 0, .4);
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.overlay.show {
  display: block;
}

@media (max-width: 768px) {
  .main-nav {
    height: 60px;
    padding: 0 12px;
  }

  .title {
    font-size: 16px;
  }

  .icon {
    width: 28px;
    height: 28px;
  }

  .hamburger {
    display: block;
  }

  .left-nav {
    z-index: 999;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 70%;
    height: 100%;
    padding: 20px;
    transition: left .3s;
    position: fixed;
    top: 0;
    left: -100%;
    box-shadow: 2px 0 8px rgba(0, 0, 0, .1);
  }

  .left-nav.open {
    left: 0;
  }
}

@media (max-width: 426px) {
  .title {
    font-size: 14px;
  }

  .dropdown p {
    display: none;
  }
}

.user-menu {
  position: relative;
}

.dropdown-menu {
  background: var(--White);
  border: 1px solid var(--Grey2);
  z-index: 2000;
  border-radius: 8px;
  flex-direction: column;
  min-width: 100px;
  display: flex;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}

.dropdown-item {
  text-align: center;
  cursor: pointer;
  color: var(--Text1);
  border: none;
  border: 1px solid var(--PrimaryPastel);
  background: none;
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 14px;
  transition: background .2s;
}

.dropdown-item:hover {
  background: #f5f5f5;
}

.dropdown-item.logout {
  color: var(--Red);
  font-weight: 500;
}

/* [project]/components/Sidebar/Sidebar.css [app-client] (css) */
.sidebar-main {
  background: var(--White);
  border-right: 1px solid var(--Grey2);
  z-index: 999;
  width: 220px;
  height: calc(100vh - 100px);
  padding: 20px;
  position: fixed;
  top: 100px;
  left: 0;
  overflow-y: auto;
}

.sidebar-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-main li {
  cursor: pointer;
  color: #333;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-size: 14px;
  transition: all .2s;
  display: flex;
}

.sidebar-main li:hover {
  background: #f3f4f6;
}

.sidebar-main li.active {
  background: var(--PrimaryPastel);
  border-left: 2px solid var(--Primary);
  border-radius: 6px;
  font-weight: 500;
}

.sidebar-main li.active .icon {
  color: #1d4ed8;
}

.icon {
  align-items: center;
  margin-right: 8px;
  display: flex;
}

/* [project]/components/DashboardLayout/DashboardLayout.css [app-client] (css) */
.layout {
  height: 100vh;
  margin-top: 100px;
  display: flex;
}

.main-content {
  background: var(--Background);
  flex: 1;
  height: auto;
  margin-left: 220px;
  padding: 20px;
}

.content-box {
  background: var(--White);
  color: var(--Text1);
  border-radius: 8px;
  padding: 20px;
}

/* [project]/components/ContentDashboard/Journals/Journals.css [app-client] (css) */
.btn-journal {
  background-color: var(--Primary);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 143px;
  padding: 10px;
  display: flex;
}

.journals-nav {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.search-journal {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.search-box-j {
  border: 1px solid var(--Grey3);
  color: var(--Text1);
  background-color: var(--White);
  border-radius: 6px;
  width: 250px;
  padding: 8px 12px;
  font-size: 14px;
}

.image-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.journals-container {
  background: var(--White);
  flex-direction: column;
  width: -webkit-fill-available;
  height: auto;
  max-height: 93vh;
  padding: 20px;
  display: flex;
  overflow: auto;
}

.journals-header {
  justify-content: flex-start;
  display: flex;
}

.add-journal-btn {
  background: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  transition: all .2s;
}

.add-journal-btn:hover {
  background: #0056b3;
}

.journals-empty {
  text-align: center;
  flex-direction: column;
  flex: 1;
  align-items: center;
  display: flex;
}

.journals-empty p {
  color: var(--Text1);
  font-size: 14px;
}

.modal-actions-journal {
  justify-content: flex-end;
  gap: 10px;
  display: flex;
}

.save-btn-journal {
  cursor: pointer;
  background: var(--Primary);
  color: var(--White);
  border: none;
  border-radius: 8px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.cancel-btn-journal {
  cursor: pointer;
  background: var(--White);
  border: 1px solid var(--Red);
  color: var(--Red);
  border-radius: 8px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.journal-form input, .journal-form textarea {
  border: 1px solid var(--Grey3);
  border-radius: 6px;
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 14px;
}

.back-btn {
  background-color: var(--Grey2);
  cursor: pointer;
  color: var(--Text1);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 10px 16px;
  font-weight: 500;
  display: flex;
}

.back-btn:hover {
  background-color: var(--Grey3);
}

.btn-text {
  justify-content: space-between;
  gap: 10px;
  display: flex;
}

.journal-form {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.journal-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  display: grid;
}

.journal-col {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.file-input small {
  color: #666;
  margin-top: 4px;
  font-size: 12px;
  display: block;
}

.radio-group {
  color: var(--Text1);
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.radio-group > div {
  align-items: center;
  gap: 20px;
  display: flex;
}

.modal-actions-journal {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  display: flex;
}

.cancel-btn-journal, .save-btn-journal {
  cursor: pointer;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
}

.cancel-btn-journal {
  background: #f0f0f0;
  border: 1px solid #ccc;
}

.save-btn-journal {
  color: #fff;
  background: #007bff;
  border: none;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--Grey3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff6b6b, #f94d6a);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#f94d6a, #ff6b6b);
}

/* [project]/components/ContentDashboard/JournalModals/Modal.css [app-client] (css) */
.modal-overlay-dashboard {
  z-index: 1000;
  background: rgba(0, 0, 0, .5);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-dashboard {
  background: var(--White);
  border-radius: 12px;
  max-width: 90%;
  padding: 20px;
  animation: .3s fadeIn;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.modal-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.modal-header-dashboard h3 {
  color: var(--Text1);
  margin: 0;
  font-size: 18px;
}

.close-btn-icon-dashboard {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
}

.modal-content-dashboard {
  margin-top: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* [project]/assets/textbox/PdpTextbox1.css [app-client] (css) */
.pdp-textbox-container {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

.pdp-textbox-label {
  color: #666;
  pointer-events: none;
  z-index: 1;
  background-color: #fff;
  padding: 1px 17px 3px 12px;
  font-size: 16px;
  font-weight: 400;
  transition: all .2s;
  position: absolute;
  top: 43%;
  left: 10px;
  transform: translateY(-50%);
}

.pdp-textbox-input, .pdp-textbox-dropdown {
  box-sizing: border-box;
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  width: 100%;
  height: 40px;
  padding: 12px 40px 12px 12px;
  font-size: 15px;
  transition: border-color .2s;
}

.pdp-textbox-input:focus, .pdp-textbox-dropdown:focus {
  border-color: #3f51b5;
}

.pdp-textbox-container.focused .pdp-textbox-label {
  color: #3f51b5;
  font-size: 12px;
  top: 4px;
}

.indicator {
  font-size: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.indicator.valid {
  color: green;
}

.indicator.invalid {
  color: red;
}

.toggle-visibility {
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.pdp-date-wrapper {
  width: 100%;
  position: relative;
}

.pdp-date-wrapper .pdp-textbox-input {
  padding-right: 40px;
}

.pdp-date-icon {
  cursor: pointer;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.pdp-date-icon img {
  pointer-events: none;
  width: 20px;
  height: 20px;
}

.pdp-date-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
}

.pdp-date-wrapper input[type="date"]::-moz-focus-inner {
  border: 0;
}

@media (max-width: 600px) {
  .pdp-textbox-input, .pdp-textbox-dropdown {
    height: 40px;
    padding: 10px 35px 10px 10px;
    font-size: 14px;
  }

  .pdp-textbox-label {
    font-size: 14px;
  }

  .pdp-textbox-container.focused .pdp-textbox-label {
    font-size: 11px;
  }
}

.pdp-textbox-input.invalid {
  border-color: red;
}

.error-text {
  color: red;
  margin-top: 4px;
  font-size: 12px;
}

.pdp-textarea {
  resize: vertical;
  min-height: 90px;
  padding: 12px;
  line-height: 1.4;
}

.pdp-file-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.pdp-file-wrapper .pdp-textbox-input {
  cursor: pointer;
  width: 100%;
  padding-right: 40px;
}

.pdp-file-icon {
  cursor: pointer;
  color: var(--Grey2);
  font-size: 18px;
  transition: color .2s;
  position: absolute;
  bottom: 16px;
  right: 12px;
}

.pdp-file-icon:hover {
  color: var(--Primary);
}

/* [project]/components/JournalsTableData/JournalsTableData.css [app-client] (css) */
.journals-table-container {
  margin-top: 20px;
  overflow-x: auto;
}

.journals-table {
  border-collapse: collapse;
  width: 100%;
  color: var(--Text1);
  font-size: 14px;
}

.journals-table th, .journals-table td {
  text-align: left;
  border-bottom: 1px solid var(--Grey2);
  padding: 10px 12px;
}

.journals-table th {
  background: #fafafa;
  font-weight: 600;
}

.status-badge {
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.published {
  background: var(--GreenPastel);
  color: var(--Green);
}

.status-badge.draft {
  background: var(--YellowPastel);
  color: var(--Yellow);
}

.action-buttons {
  gap: 8px;
  display: flex;
}

.edit-btn, .delete-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
}

.edit-btn {
  color: var(--Yellow);
}

.delete-btn {
  color: var(--Red);
}

/* [project]/components/JournalEdit/JournalEdit.css [app-client] (css) */
.journal-editor-wrapper {
  gap: 13px;
  height: 79vh;
  display: flex;
}

.journal-sidebar {
  background-color: var(--White);
  width: 220px;
  color: var(--Text1);
  border-right: 1px solid var(--Grey2);
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  overflow-y: auto;
}

.journal-sidebar::-webkit-scrollbar {
  display: none;
}

.journal-sidebar-item {
  cursor: pointer;
  padding: 12px 20px;
  transition: background .2s;
}

.journal-sidebar-item:hover {
  background-color: var(--Grey2);
  color: var(--Primary);
}

.journal-sidebar-item.is-active {
  background-color: var(--PrimaryPastel);
  border-radius: 8px;
  font-weight: 500;
}

.journal-main {
  z-index: 1001;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.journal-tabs {
  border-bottom: 1px solid var(--Grey2);
  background-color: var(--White);
  display: flex;
}

.journal-tab {
  cursor: pointer;
  color: var(--Text1);
  padding: 12px 20px;
  transition: background .2s;
}

.journal-tab.is-active {
  color: var(--Primary);
  border-bottom: 3px solid #007bff;
  font-weight: bold;
}

.journal-content {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
}

.journal-content::-webkit-scrollbar {
  display: none;
}

.journal-content-heading {
  margin-bottom: 15px;
}

.journal-input-title {
  background-color: unset;
  border: 1px solid var(--Grey2);
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
}

.journal-textarea-content {
  resize: vertical;
  background-color: unset;
  width: 100%;
  height: 400px;
  color: var(--Text1);
  padding: 10px;
  font-size: 14px;
}

.journal-rendered-content {
  margin-top: 10px;
}

/* [project]/components/JournalEditSidebarContent/AimAndScope/AimAndScope.css [app-client] (css) */
.AimScope-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.AimScope-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.AimScope-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-AimScope {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-AimScope {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-AimScope {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/node_modules/react-quill-new/dist/quill.snow.css [app-client] (css) */
.ql-container {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  position: relative;
}

.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}

.ql-container:not(.ql-disabled) li[data-list="checked"] > .ql-ui, .ql-container:not(.ql-disabled) li[data-list="unchecked"] > .ql-ui {
  cursor: pointer;
}

.ql-clipboard {
  height: 1px;
  position: absolute;
  top: 50%;
  left: -100000px;
  overflow-y: hidden;
}

.ql-clipboard p {
  margin: 0;
  padding: 0;
}

.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  -moz-tab-size: 4;
  tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
  outline: none;
  height: 100%;
  padding: 12px 15px;
  line-height: 1.42;
  overflow-y: auto;
}

.ql-editor > * {
  cursor: text;
}

.ql-editor p, .ql-editor ol, .ql-editor pre, .ql-editor blockquote, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
  margin: 0;
  padding: 0;
}

@supports (counter-set: none) {
  .ql-editor p, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor p, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor table {
  border-collapse: collapse;
}

.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}

.ql-editor ol {
  padding-left: 1.5em;
}

.ql-editor li {
  padding-left: 1.5em;
  list-style-type: none;
  position: relative;
}

.ql-editor li > .ql-ui:before {
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
  margin-left: -1.5em;
  margin-right: .3em;
  display: inline-block;
}

.ql-editor li[data-list="checked"] > .ql-ui, .ql-editor li[data-list="unchecked"] > .ql-ui {
  color: #777;
}

.ql-editor li[data-list="bullet"] > .ql-ui:before {
  content: "•";
}

.ql-editor li[data-list="checked"] > .ql-ui:before {
  content: "☑";
}

.ql-editor li[data-list="unchecked"] > .ql-ui:before {
  content: "☐";
}

@supports (counter-set: none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list="ordered"] {
  counter-increment: list-0;
}

.ql-editor li[data-list="ordered"] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}

.ql-editor li[data-list="ordered"].ql-indent-1 {
  counter-increment: list-1;
}

.ql-editor li[data-list="ordered"].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list="ordered"].ql-indent-2 {
  counter-increment: list-2;
}

.ql-editor li[data-list="ordered"].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list="ordered"].ql-indent-3 {
  counter-increment: list-3;
}

.ql-editor li[data-list="ordered"].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list="ordered"].ql-indent-4 {
  counter-increment: list-4;
}

.ql-editor li[data-list="ordered"].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list="ordered"].ql-indent-5 {
  counter-increment: list-5;
}

.ql-editor li[data-list="ordered"].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}

.ql-editor li[data-list="ordered"].ql-indent-6 {
  counter-increment: list-6;
}

.ql-editor li[data-list="ordered"].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}

.ql-editor li[data-list="ordered"].ql-indent-7 {
  counter-increment: list-7;
}

.ql-editor li[data-list="ordered"].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}

.ql-editor li[data-list="ordered"].ql-indent-8 {
  counter-increment: list-8;
}

.ql-editor li[data-list="ordered"].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}

@supports (counter-set: none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}

@supports not (counter-set: none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}

.ql-editor li[data-list="ordered"].ql-indent-9 {
  counter-increment: list-9;
}

.ql-editor li[data-list="ordered"].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}

.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}

.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}

.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}

.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}

.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}

.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}

.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}

.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}

.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}

.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}

.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}

.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}

.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}

.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}

.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}

.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}

.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}

.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}

.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}

.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}

.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}

.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}

.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}

.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}

.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}

.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}

.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}

.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}

.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}

.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}

.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}

.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}

.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}

.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}

.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}

.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}

.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}

.ql-editor li.ql-direction-rtl > .ql-ui:before {
  text-align: left;
  margin-left: .3em;
  margin-right: -1.5em;
}

.ql-editor table {
  table-layout: fixed;
  width: 100%;
}

.ql-editor table td {
  outline: none;
}

.ql-editor .ql-code-block-container {
  font-family: monospace;
}

.ql-editor .ql-video {
  max-width: 100%;
  display: block;
}

.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}

.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}

.ql-editor .ql-bg-black {
  background-color: #000;
}

.ql-editor .ql-bg-red {
  background-color: #e60000;
}

.ql-editor .ql-bg-orange {
  background-color: #f90;
}

.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}

.ql-editor .ql-bg-green {
  background-color: #008a00;
}

.ql-editor .ql-bg-blue {
  background-color: #06c;
}

.ql-editor .ql-bg-purple {
  background-color: #93f;
}

.ql-editor .ql-color-white {
  color: #fff;
}

.ql-editor .ql-color-red {
  color: #e60000;
}

.ql-editor .ql-color-orange {
  color: #f90;
}

.ql-editor .ql-color-yellow {
  color: #ff0;
}

.ql-editor .ql-color-green {
  color: #008a00;
}

.ql-editor .ql-color-blue {
  color: #06c;
}

.ql-editor .ql-color-purple {
  color: #93f;
}

.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}

.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}

.ql-editor .ql-size-small {
  font-size: .75em;
}

.ql-editor .ql-size-large {
  font-size: 1.5em;
}

.ql-editor .ql-size-huge {
  font-size: 2.5em;
}

.ql-editor .ql-direction-rtl {
  text-align: inherit;
  direction: rtl;
}

.ql-editor .ql-align-center {
  text-align: center;
}

.ql-editor .ql-align-justify {
  text-align: justify;
}

.ql-editor .ql-align-right {
  text-align: right;
}

.ql-editor .ql-ui {
  position: absolute;
}

.ql-editor.ql-blank:before {
  color: rgba(0, 0, 0, .6);
  content: attr(data-placeholder);
  pointer-events: none;
  font-style: italic;
  position: absolute;
  left: 15px;
  right: 15px;
}

.ql-snow.ql-toolbar:after, .ql-snow .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}

.ql-snow.ql-toolbar button, .ql-snow .ql-toolbar button {
  cursor: pointer;
  float: left;
  background: none;
  border: none;
  width: 28px;
  height: 24px;
  padding: 3px 5px;
  display: inline-block;
}

.ql-snow.ql-toolbar button svg, .ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}

.ql-snow.ql-toolbar button:active:hover, .ql-snow .ql-toolbar button:active:hover {
  outline: none;
}

.ql-snow.ql-toolbar input.ql-image[type="file"], .ql-snow .ql-toolbar input.ql-image[type="file"] {
  display: none;
}

.ql-snow.ql-toolbar button:hover, .ql-snow .ql-toolbar button:hover, .ql-snow.ql-toolbar button:focus, .ql-snow .ql-toolbar button:focus, .ql-snow.ql-toolbar button.ql-active, .ql-snow .ql-toolbar button.ql-active, .ql-snow.ql-toolbar .ql-picker-label:hover, .ql-snow .ql-toolbar .ql-picker-label:hover, .ql-snow.ql-toolbar .ql-picker-label.ql-active, .ql-snow .ql-toolbar .ql-picker-label.ql-active, .ql-snow.ql-toolbar .ql-picker-item:hover, .ql-snow .ql-toolbar .ql-picker-item:hover, .ql-snow.ql-toolbar .ql-picker-item.ql-selected, .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}

.ql-snow.ql-toolbar button:hover .ql-fill, .ql-snow .ql-toolbar button:hover .ql-fill, .ql-snow.ql-toolbar button:focus .ql-fill, .ql-snow .ql-toolbar button:focus .ql-fill, .ql-snow.ql-toolbar button.ql-active .ql-fill, .ql-snow .ql-toolbar button.ql-active .ql-fill, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill, .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill, .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill, .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}

.ql-snow.ql-toolbar button:hover .ql-stroke, .ql-snow .ql-toolbar button:hover .ql-stroke, .ql-snow.ql-toolbar button:focus .ql-stroke, .ql-snow .ql-toolbar button:focus .ql-stroke, .ql-snow.ql-toolbar button.ql-active .ql-stroke, .ql-snow .ql-toolbar button.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow.ql-toolbar button:hover .ql-stroke-miter, .ql-snow .ql-toolbar button:hover .ql-stroke-miter, .ql-snow.ql-toolbar button:focus .ql-stroke-miter, .ql-snow .ql-toolbar button:focus .ql-stroke-miter, .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}

@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active), .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }

  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill, .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }

  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke, .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}

.ql-snow, .ql-snow * {
  box-sizing: border-box;
}

.ql-snow .ql-hidden {
  display: none;
}

.ql-snow .ql-out-bottom, .ql-snow .ql-out-top {
  visibility: hidden;
}

.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}

.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}

.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}

.ql-snow .ql-formats {
  vertical-align: middle;
  display: inline-block;
}

.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}

.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

.ql-snow .ql-fill, .ql-snow .ql-stroke.ql-fill {
  fill: #444;
}

.ql-snow .ql-empty {
  fill: none;
}

.ql-snow .ql-even {
  fill-rule: evenodd;
}

.ql-snow .ql-thin, .ql-snow .ql-stroke.ql-thin {
  stroke-width: 1px;
}

.ql-snow .ql-transparent {
  opacity: .4;
}

.ql-snow .ql-direction svg:last-child {
  display: none;
}

.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}

.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}

.ql-snow .ql-editor h1 {
  font-size: 2em;
}

.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}

.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}

.ql-snow .ql-editor h4 {
  font-size: 1em;
}

.ql-snow .ql-editor h5 {
  font-size: .83em;
}

.ql-snow .ql-editor h6 {
  font-size: .67em;
}

.ql-snow .ql-editor a {
  text-decoration: underline;
}

.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 16px;
}

.ql-snow .ql-editor code, .ql-snow .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}

.ql-snow .ql-editor .ql-code-block-container {
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
}

.ql-snow .ql-editor code {
  padding: 2px 4px;
  font-size: 85%;
}

.ql-snow .ql-editor .ql-code-block-container {
  color: #f8f8f2;
  background-color: #23241f;
  overflow: visible;
}

.ql-snow .ql-editor img {
  max-width: 100%;
}

.ql-snow .ql-picker {
  color: #444;
  float: left;
  vertical-align: middle;
  height: 24px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.ql-snow .ql-picker-label {
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  display: inline-block;
  position: relative;
}

.ql-snow .ql-picker-label:before {
  line-height: 22px;
  display: inline-block;
}

.ql-snow .ql-picker-options {
  white-space: nowrap;
  background-color: #fff;
  min-width: 100%;
  padding: 4px 8px;
  display: none;
  position: absolute;
}

.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  z-index: 1;
  margin-top: -1px;
  display: block;
  top: 100%;
}

.ql-snow .ql-color-picker, .ql-snow .ql-icon-picker {
  width: 28px;
}

.ql-snow .ql-color-picker .ql-picker-label, .ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}

.ql-snow .ql-color-picker .ql-picker-label svg, .ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}

.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}

.ql-snow .ql-icon-picker .ql-picker-item {
  width: 24px;
  height: 24px;
  padding: 2px 4px;
}

.ql-snow .ql-color-picker .ql-picker-options {
  width: 152px;
  padding: 3px 5px;
}

.ql-snow .ql-color-picker .ql-picker-item {
  float: left;
  border: 1px solid rgba(0, 0, 0, 0);
  width: 16px;
  height: 16px;
  margin: 2px;
  padding: 0;
}

.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  width: 18px;
  margin-top: -9px;
  position: absolute;
  top: 50%;
  right: 0;
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before, .ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before, .ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before {
  content: attr(data-label);
}

.ql-snow .ql-picker.ql-header {
  width: 98px;
}

.ql-snow .ql-picker.ql-header .ql-picker-label:before, .ql-snow .ql-picker.ql-header .ql-picker-item:before {
  content: "Normal";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before {
  content: "Heading 1";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before {
  content: "Heading 2";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before {
  content: "Heading 3";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before {
  content: "Heading 4";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before {
  content: "Heading 5";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before {
  content: "Heading 6";
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before {
  font-size: 2em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before {
  font-size: 1.5em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before {
  font-size: 1.17em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before {
  font-size: 1em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before {
  font-size: .83em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before {
  font-size: .67em;
}

.ql-snow .ql-picker.ql-font {
  width: 108px;
}

.ql-snow .ql-picker.ql-font .ql-picker-label:before, .ql-snow .ql-picker.ql-font .ql-picker-item:before {
  content: "Sans Serif";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]:before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]:before {
  content: "Serif";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="monospace"]:before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]:before {
  content: "Monospace";
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]:before {
  font-family: Georgia, Times New Roman, serif;
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]:before {
  font-family: Monaco, Courier New, monospace;
}

.ql-snow .ql-picker.ql-size {
  width: 98px;
}

.ql-snow .ql-picker.ql-size .ql-picker-label:before, .ql-snow .ql-picker.ql-size .ql-picker-item:before {
  content: "Normal";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]:before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]:before {
  content: "Small";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]:before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]:before {
  content: "Large";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]:before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]:before {
  content: "Huge";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]:before {
  font-size: 10px;
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]:before {
  font-size: 18px;
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]:before {
  font-size: 32px;
}

.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}

.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}

.ql-code-block-container {
  position: relative;
}

.ql-code-block-container .ql-ui {
  top: 5px;
  right: 5px;
}

.ql-toolbar.ql-snow {
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 8px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}

.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid rgba(0, 0, 0, 0);
}

.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label, .ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected, .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}

.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0;
}

.ql-snow .ql-tooltip {
  color: #444;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px 12px;
  box-shadow: 0 0 5px #ddd;
}

.ql-snow .ql-tooltip:before {
  content: "Visit URL:";
  margin-right: 8px;
  line-height: 26px;
}

.ql-snow .ql-tooltip input[type="text"] {
  border: 1px solid #ccc;
  width: 170px;
  height: 26px;
  margin: 0;
  padding: 3px 5px;
  font-size: 13px;
  display: none;
}

.ql-snow .ql-tooltip a.ql-preview {
  text-overflow: ellipsis;
  vertical-align: top;
  max-width: 200px;
  display: inline-block;
  overflow-x: hidden;
}

.ql-snow .ql-tooltip a.ql-action:after {
  content: "Edit";
  border-right: 1px solid #ccc;
  margin-left: 16px;
  padding-right: 8px;
}

.ql-snow .ql-tooltip a.ql-remove:before {
  content: "Remove";
  margin-left: 8px;
}

.ql-snow .ql-tooltip a {
  line-height: 26px;
}

.ql-snow .ql-tooltip.ql-editing a.ql-preview, .ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}

.ql-snow .ql-tooltip.ql-editing input[type="text"] {
  display: inline-block;
}

.ql-snow .ql-tooltip.ql-editing a.ql-action:after {
  content: "Save";
  border-right: 0;
  padding-right: 0;
}

.ql-snow .ql-tooltip[data-mode="link"]:before {
  content: "Enter link:";
}

.ql-snow .ql-tooltip[data-mode="formula"]:before {
  content: "Enter formula:";
}

.ql-snow .ql-tooltip[data-mode="video"]:before {
  content: "Enter video:";
}

.ql-snow a {
  color: #06c;
}

.ql-container.ql-snow {
  border: 1px solid #ccc;
}

/* [project]/components/RichTextEditor/RichTextEditor.css [app-client] (css) */
.journal-rich-text {
  box-sizing: border-box;
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
}

.ql-container {
  border: 1px solid var(--Grey2);
  height: 496px;
  max-height: 40vh;
  overflow-y: auto;
}

.ql-editor {
  word-break: break-word;
  min-height: 100%;
  max-height: 40vh;
  overflow-y: auto;
}

.ql-editor ul {
  color: var(--Text1);
  padding-left: 1.5em;
  list-style-type: disc;
}

.ql-editor ol {
  color: var(--Text1);
  padding-left: 1.5em;
  list-style-type: decimal;
}

.ql-editor ul li, .ql-editor ol li {
  color: var(--Text1);
}

/* [project]/components/JournalEditSidebarContent/AuthorGuidelines/AuthorGuidelines.css [app-client] (css) */
.AuthorGuidelines-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.AuthorGuidelines-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.AuthorGuidelines-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-AuthorGuidelines {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-AuthorGuidelines {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-AuthorGuidelines {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/EditorInChief/EditorInChief.css [app-client] (css) */
.journals-container-EditorinChief {
  background: var(--White);
  flex-direction: column;
  height: 96vh;
  display: flex;
}

.journals-header-EditorinChief {
  justify-content: space-between;
  margin-bottom: 20px;
  display: flex;
}

.btn-EditorinChief {
  background-color: var(--Primary);
  cursor: pointer;
  width: auto;
  min-width: 192px;
  height: 40px;
  color: var(--White);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: 16px;
  display: flex;
}

.btn-EditorinChief:hover {
  background-color: #0056b3;
}

.image-container-EditorinChief {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.img-desc-EditorinChief p {
  color: var(--Text1);
  margin-top: 10px;
  font-size: 14px;
}

/* [project]/components/JournalEditSidebarContent/EditorInChief/EditModal/EditModal.css [app-client] (css) */
.modal-overlay-EChief {
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-EChief {
  background-color: var(--White);
  border-radius: 10px;
  width: 700px;
  max-width: 95%;
  max-height: 90vh;
  padding: 20px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.modal-header-EChief {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.modal-header-EChief h3 {
  color: var(--Text1);
  margin: 0;
  font-size: 18px;
}

.close-btn-icon-EChief {
  cursor: pointer;
  background: none;
  border: none;
}

.modal-content-EChief {
  margin-top: 10px;
}

/* [project]/components/JournalEditSidebarContent/EditorInChief/EditorInChiefTableData/EditorInChiefTableData.css [app-client] (css) */
.editors-table-container {
  margin-top: 20px;
  overflow-x: auto;
}

.editors-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

.editors-table th, .editors-table td {
  text-align: left;
  border-bottom: 1px dashed var(--Grey3);
  vertical-align: middle;
  color: var(--Text1);
  padding: 12px 10px;
}

.editors-table th {
  color: var(--Text1);
  background-color: var(--White);
  font-weight: 600;
}

.name-cell .name-wrapper {
  color: var(--Text1);
  align-items: center;
  gap: 10px;
  display: flex;
}

.name-cell .avatar {
  border-radius: 50%;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  overflow: hidden;
}

.name-cell .avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.action-buttons {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 100%;
  display: flex;
}

.edit-btn, .delete-btn {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  display: flex;
}

.edit-btn {
  background: #fff4d8;
}

.delete-btn {
  background: #ffe5e5;
}

.editors-table td:last-child {
  width: 80px;
}

/* [project]/components/JournalEditSidebarContent/EditorInChief/FormEditJournal/FormEditJournal.css [app-client] (css) */
.editor-form-edc {
  flex-direction: column;
  display: flex;
}

.form-grid-edc {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.form-group-edc {
  flex-direction: column;
  display: flex;
}

.form-group-edc label {
  color: var(--Text1);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.form-group-edc input, .form-group-edc select, .form-group-edc textarea {
  border: 1px solid var(--Grey3);
  background-color: var(--White);
  color: var(--Text1);
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
}

.form-group-edc small {
  color: var(--Grey2);
  margin-top: 4px;
  font-size: 12px;
}

.full-width-edc {
  grid-column: span 2;
}

.modal-actions-edc {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  display: flex;
}

.cancel-btn-edc {
  cursor: pointer;
  background: var(--White);
  border: 1px solid var(--Red);
  color: var(--Red);
  border-radius: 8px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.cancel-btn-edc:hover {
  background-color: #b0b0b0;
}

.save-btn-edc {
  cursor: pointer;
  background: var(--Primary);
  color: var(--White);
  border: none;
  border-radius: 8px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.save-btn-edc:hover {
  background-color: #0056b3;
}

textarea {
  resize: vertical;
}

/* [project]/components/SearchBar/SearchBar.css [app-client] (css) */
.SearchContainer {
  justify-content: right;
  align-items: center;
  width: 100%;
  display: flex;
}

.search-bar {
  width: 240px;
  position: relative;
  left: -50px;
}

.search-icon {
  cursor: pointer;
  position: absolute;
  top: 45%;
  right: 12px;
  transform: translateY(-50%);
}

.search-icon img {
  width: 18px;
  height: 18px;
}

/* [project]/components/JournalEditSidebarContent/CoEditorInChief/CoEditorInChief.css [app-client] (css) */
.journals-container-CoEditorinChief {
  background: var(--White);
  flex-direction: column;
  height: 96vh;
  display: flex;
}

.journals-header-CoEditorinChief {
  justify-content: space-between;
  margin-bottom: 20px;
  display: flex;
}

.btn-CoEditorinChief {
  background-color: var(--Primary);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: auto;
  min-width: 192px;
  height: 40px;
  padding: 10px;
  font-size: 16px;
  display: flex;
}

.btn-CoEditorinChief:hover {
  background-color: #0056b3;
}

.image-container-CoEditorinChief {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.img-desc-CoEditorinChief p {
  color: var(--Text1);
  margin-top: 10px;
  font-size: 14px;
}

/* [project]/components/JournalEditSidebarContent/CoEditorInChief/CoEditModal/CoEditModal.css [app-client] (css) */
.modal-overlay-CEChief {
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-CEChief {
  background-color: var(--White);
  border-radius: 10px;
  width: 700px;
  max-width: 95%;
  max-height: 90vh;
  padding: 20px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.modal-header-CEChief {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.modal-header-CEChief h3 {
  color: var(--Text1);
  margin: 0;
  font-size: 18px;
}

.close-btn-icon-CEChief {
  cursor: pointer;
  background: none;
  border: none;
}

.modal-content-CEChief {
  margin-top: 10px;
}

/* [project]/components/JournalEditSidebarContent/CoEditorInChief/CoEditorTableData/CoEditorTableData.css [app-client] (css) */
.editors-table-container-CoEdit {
  margin-top: 20px;
  overflow-x: auto;
}

.editors-table-CoEdit {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

.editors-table-CoEdit th, .editors-table-CoEdit td {
  text-align: left;
  border-bottom: 1px dashed var(--Grey3);
  vertical-align: middle;
  color: var(--Text1);
  padding: 12px 10px;
}

.editors-table-CoEdit th {
  color: var(--Text1);
  background-color: var(--White);
  font-weight: 600;
}

.name-cell-CoEdit .name-wrapper-CoEdit {
  color: var(--Text1);
  align-items: center;
  gap: 10px;
  display: flex;
}

.name-cell-CoEdit .avatar-CoEdit {
  border-radius: 50%;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  overflow: hidden;
}

.name-cell-CoEdit .avatar-CoEdit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.action-buttons-CoEdit {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 100%;
  display: flex;
}

.edit-btn-CoEdit, .delete-btn-CoEdit {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  display: flex;
}

.edit-btn-CoEdit {
  background: #fff4d8;
}

.delete-btn-CoEdit {
  background: #ffe5e5;
}

.editors-table-CoEdit td:last-child {
  width: 80px;
}

/* [project]/components/JournalEditSidebarContent/CoEditorInChief/FormCoEditJournal/FormCoEditJournal.css [app-client] (css) */
.editor-form-Coedc {
  flex-direction: column;
  display: flex;
}

.form-grid-Coedc {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.form-group-Coedc {
  flex-direction: column;
  display: flex;
}

.form-group-Coedc label {
  color: var(--Text1);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.form-group-Coedc input, .form-group-Coedc select, .form-group-Coedc textarea {
  border: 1px solid var(--Grey3);
  background-color: var(--White);
  color: var(--Text1);
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
}

.form-group-Coedc small {
  color: var(--Grey2);
  margin-top: 4px;
  font-size: 12px;
}

.full-width-Coedc {
  grid-column: span 2;
}

.modal-actions-Coedc {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  display: flex;
}

.cancel-btn-Coedc {
  cursor: pointer;
  background: var(--White);
  border: 1px solid var(--Red);
  color: var(--Red);
  border-radius: 8px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.cancel-btn-Coedc:hover {
  background-color: #b0b0b0;
}

.save-btn-Coedc {
  cursor: pointer;
  background: var(--Primary);
  color: var(--White);
  border: none;
  border-radius: 8px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.save-btn-Coedc:hover {
  background-color: #0056b3;
}

textarea {
  resize: vertical;
}

/* [project]/components/JournalEditSidebarContent/AssociateEditors/AssociateEditors.css [app-client] (css) */
.journals-container-AssociateEditors {
  background: var(--White);
  flex-direction: column;
  height: 96vh;
  display: flex;
}

.journals-header-AssociateEditors {
  justify-content: space-between;
  margin-bottom: 20px;
  display: flex;
}

.btn-AssociateEditors {
  background-color: var(--Primary);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: auto;
  min-width: 192px;
  height: 40px;
  padding: 10px;
  display: flex;
}

.btn-AssociateEditors:hover {
  background-color: #0056b3;
}

.image-container-AssociateEditors {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.img-desc-AssociateEditors p {
  color: var(--Text1);
  margin-top: 10px;
  font-size: 14px;
}

/* [project]/components/JournalEditSidebarContent/AssociateEditors/AssociateEditModal/AssociateEditModal.css [app-client] (css) */
.modal-overlay-AE {
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-AE {
  background-color: var(--White);
  border-radius: 10px;
  width: 700px;
  max-width: 95%;
  max-height: 90vh;
  padding: 20px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.modal-header-AE {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.modal-header-AE h3 {
  color: var(--Text1);
  margin: 0;
  font-size: 18px;
}

.close-btn-icon-AE {
  cursor: pointer;
  background: none;
  border: none;
}

.modal-content-AE {
  margin-top: 10px;
}

/* [project]/components/JournalEditSidebarContent/AssociateEditors/AssociateEditorTableData/AssociateEditorTableData.css [app-client] (css) */
.editors-table-container-ae {
  margin-top: 20px;
  overflow-x: auto;
}

.editors-table-ae {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

.editors-table-ae th, .editors-table-ae td {
  text-align: left;
  border-bottom: 1px dashed var(--Grey3);
  vertical-align: middle;
  color: var(--Text1);
  padding: 12px 10px;
}

.editors-table-ae th {
  color: var(--Text1);
  background-color: var(--White);
  font-weight: 600;
}

.name-cell-ae .name-wrapper-ae {
  color: var(--Text1);
  align-items: center;
  gap: 10px;
  display: flex;
}

.avatar-ae {
  border-radius: 50%;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  overflow: hidden;
}

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

.action-buttons-ae {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 100%;
  display: flex;
}

.edit-btn-ae, .delete-btn-ae {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  display: flex;
}

.edit-btn-ae {
  background: #fff4d8;
}

.delete-btn-ae {
  background: #ffe5e5;
}

.editors-table-ae td:last-child {
  width: 80px;
}

/* [project]/components/JournalEditSidebarContent/AssociateEditors/FormAsociateEditJournal/FormAssociateEditJournal.css [app-client] (css) */
.editor-form-ae {
  flex-direction: column;
  display: flex;
}

.form-grid-ae {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.form-group-ae {
  flex-direction: column;
  display: flex;
}

.form-group-ae label {
  color: var(--Text1);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.form-group-ae input, .form-group-ae select, .form-group-ae textarea {
  border: 1px solid var(--Grey3);
  background-color: var(--White);
  color: var(--Text1);
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
}

.form-group-ae small {
  color: var(--Grey2);
  margin-top: 4px;
  font-size: 12px;
}

.full-width-ae {
  grid-column: span 2;
}

.modal-actions-ae {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  display: flex;
}

.cancel-btn-ae {
  cursor: pointer;
  background: var(--White);
  border: 1px solid var(--Red);
  color: var(--Red);
  border-radius: 8px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.cancel-btn-ae:hover {
  background-color: #b0b0b0;
}

.save-btn-ae {
  cursor: pointer;
  background: var(--Primary);
  color: var(--White);
  border: none;
  border-radius: 8px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.save-btn-ae:hover {
  background-color: #0056b3;
}

textarea {
  resize: vertical;
}

/* [project]/components/JournalEditSidebarContent/PeerReviewProcess/PeerReviewProcess.css [app-client] (css) */
.PeerReviewProcess-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.PeerReviewProcess-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.PeerReviewProcess-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-PeerReviewProcess {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-PeerReviewProcess {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-PeerReviewProcess {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/ArticlesInProcess/ArticlesInProcess.css [app-client] (css) */
.aip-no-data {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.aip-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.aip-add-btn {
  background-color: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  min-width: 192px;
  height: 40px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.aip-add-btn:hover {
  background: #0056b3;
}

.aip-btn-icon, .aip-btn-text {
  align-items: center;
  display: flex;
}

.aip-search-box {
  color: var(--Text1);
  background-color: var(--White);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
}

.aip-no-data-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  display: flex;
}

.aip-no-data-wrapper img {
  opacity: .8;
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.aip-no-data-wrapper p {
  color: var(--Text1);
  font-size: 18px;
  font-weight: 500;
}

.aip-table-container {
  width: 100%;
  margin-top: 10px;
  overflow-x: auto;
}

.aip-link {
  color: var(--Primary);
}

.aip-table {
  border-collapse: collapse;
  background: var(--White);
  width: 100%;
  color: var(--Text1);
  border-radius: 8px;
  overflow: hidden;
}

.aip-table th, .aip-table td {
  border-bottom: 1px dashed var(--Grey2);
  text-align: start;
  padding: 12px 15px;
  font-size: 14px;
}

.aip-table th {
  background-color: var(--TableHead);
  font-weight: 600;
}

.aip-title-cell {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 220px;
  overflow: hidden;
}

.aip-action-buttons-cell {
  gap: 8px;
  display: flex;
}

.aip-edit-btn, .aip-delete-btn {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 4px;
  transition: background .2s;
}

.aip-edit-btn:hover {
  background: rgba(255, 193, 7, .15);
}

.aip-delete-btn:hover {
  background: rgba(220, 53, 69, .15);
}

.aip-form h3 {
  margin-bottom: 15px;
}

.aip-form-row {
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 15px;
  display: flex;
}

.aip-input-col {
  flex: 1;
  min-width: 220px;
}

.aip-form-row .pdp-textbox {
  flex: 1;
  min-width: 200px;
}

.aip-form-content {
  margin-bottom: 16px;
}

.aip-form-container h3 {
  margin-bottom: 10px;
}

.aip-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.aip-btn-cancel {
  color: var(--Red);
  cursor: pointer;
  border: none;
  border: 1px solid var(--Red);
  background-color: unset;
  border-radius: 6px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.aip-btn-cancel:hover {
  background: #f5c6cb;
}

.aip-btn-add {
  background: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 6px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.aip-btn-add:hover {
  background: #0056b3;
}

.aip-modal-overlay {
  z-index: 999;
  background: rgba(0, 0, 0, .45);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.aip-modal {
  background: var(--White);
  border-radius: 10px;
  width: 1080px;
  max-width: 90%;
  padding: 20px;
  animation: .3s fadeIn;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.aip-modal-body {
  color: var(--Text1);
  margin-top: 10px;
}

.aip-close-btn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 25px;
}

.aip-close-btn:hover {
  color: var(--Text1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/components/JournalEditSidebarContent/Archive/Archive.css [app-client] (css) */
.archive-tabs {
  border-bottom: 1px solid #ddd;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

.archive-tab {
  cursor: pointer;
  color: var(--Text1);
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  padding: 8px 16px;
  font-size: 1rem;
  transition: all .2s ease-in-out;
}

.archive-tab:hover {
  color: var(--Primary);
}

.archive-tab.is-active {
  color: var(--Primary);
  border-bottom: 3px solid var(--Primary);
  background-color: rgba(0, 0, 0, 0);
  font-weight: 600;
}

.archive-rendered-content {
  margin-top: 20px;
}

/* [project]/components/JournalEditSidebarContent/Archive/JournalArchiveData/ArchiveArticle/ArchiveArticle.css [app-client] (css) */
.article-wrapper {
  width: 100%;
}

.header-article {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.add-btn-article {
  background-color: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  height: 40px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.add-btn-article:hover {
  background: #0056b3;
}

.btn-icon-article, .btn-text-article {
  align-items: center;
  display: flex;
}

.search-box-article {
  border: 1px solid var(--Grey2);
  color: var(--Text1);
  background-color: var(--White);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
}

.no-data-wrapper-article {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  display: flex;
}

.no-data-wrapper-article img {
  opacity: .8;
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.no-data-wrapper-article p {
  color: var(--Text1);
  font-size: 18px;
  font-weight: 500;
}

.article-table-container {
  width: 100%;
  margin-top: 10px;
  overflow-x: auto;
}

.article-table {
  border-collapse: collapse;
  background: var(--White);
  width: 100%;
  color: var(--Text1);
  border-radius: 8px;
  overflow: hidden;
}

.article-table th, .article-table td {
  border-bottom: 2px dashed var(--Grey2);
  text-align: start;
  padding: 12px 15px;
  font-size: 14px;
}

.article-table th {
  background-color: #fafafa;
  font-weight: 600;
}

.action-buttons-article {
  gap: 8px;
  display: flex;
}

.edit-btn-article, .delete-btn-article {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 4px;
  transition: background .2s;
}

.edit-btn-article:hover {
  background: rgba(255, 193, 7, .15);
}

.delete-btn-article:hover {
  background: rgba(220, 53, 69, .15);
}

.author-header {
  color: var(--Primary);
  border-bottom: 1px solid var(--Grey2);
  padding-top: 10px;
  padding-bottom: 15px;
  padding-left: 5px;
}

.article-form-container {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.article-form-container h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.form-divider {
  border-bottom: 1px solid var(--Grey2);
  margin: 10px 0;
}

.article-form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  display: grid;
}

.upload-field {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.upload-field input[type="file"] {
  border: 1px solid var(--Grey2);
  border-radius: 6px;
  padding: 6px;
}

.richtext-field {
  margin-top: 20px;
}

.article-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.article-btn-cancel {
  background: var(--White);
  color: var(--Red);
  border: 1px solid var(--Red);
  cursor: pointer;
  border-radius: 6px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.article-btn-cancel:hover {
  background: #f5c6cb;
}

.article-btn-add {
  background: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 6px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.article-btn-add:hover {
  background: #0056b3;
}

.author-row {
  background-color: var(--BgInput);
  border-radius: 12px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 10px 8px 5px 10px;
  display: grid;
}

.author-designation-actions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.author-actions {
  align-items: center;
  gap: 6px;
  display: flex;
}

.icon-btn {
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  transition: background .2s;
}

.custom-modal-overlay-article {
  z-index: 999;
  background: rgba(0, 0, 0, .45);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.custom-modal-article {
  background: #fff;
  border-radius: 10px;
  width: 1080px;
  max-width: 95%;
  height: 500px;
  padding: 20px;
  animation: .3s fadeIn;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.custom-modal-body-article {
  color: var(--Text1);
}

.close-btn-article {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 25px;
}

.close-btn-article:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/components/JournalEditSidebarContent/Archive/JournalArchiveData/ArchiveIssue/ArchiveIssue.css [app-client] (css) */
.custom-modal-issue {
  position: relative !important;
  overflow: hidden !important;
}

.issue-wrapper {
  width: 100%;
}

.header-issue {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.add-btn-issue {
  background-color: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  height: 40px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.add-btn-issue:hover {
  background: #0056b3;
}

.btn-icon-issue, .btn-text-issue {
  align-items: center;
  display: flex;
}

.search-box-issue {
  border: 1px solid var(--Grey2);
  color: var(--Text1);
  background-color: var(--White);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
}

.no-data-wrapper-issue {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  display: flex;
}

.no-data-wrapper-issue img {
  opacity: .8;
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.no-data-wrapper-issue p {
  color: var(--Text1);
  font-size: 18px;
  font-weight: 500;
}

.issue-table-container {
  width: 100%;
  margin-top: 10px;
  overflow-x: auto;
}

.issue-table {
  border-collapse: collapse;
  background: var(--White);
  width: 100%;
  color: var(--Text1);
  border-radius: 8px;
  overflow: hidden;
}

.issue-table th, .issue-table td {
  border-bottom: 2px dashed var(--Grey2);
  text-align: start;
  padding: 12px 15px;
  font-size: 14px;
}

.issue-table th {
  background-color: #fafafa;
  font-weight: 600;
}

.action-buttons-issue {
  gap: 8px;
  display: flex;
}

.edit-btn-issue, .delete-btn-issue {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 4px;
  transition: background .2s;
}

.edit-btn-issue:hover {
  background: rgba(255, 193, 7, .15);
}

.delete-btn-issue:hover {
  background: rgba(220, 53, 69, .15);
}

.issue-form-container {
  padding: 10px 0;
}

.form-divider {
  border-bottom: 1px solid var(--Grey2);
  margin: 15px 0 20px;
}

.issue-form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  display: grid;
}

.issue-field {
  flex-direction: column;
  display: flex;
  position: relative;
}

.issue-field-label {
  color: var(--Primary);
  pointer-events: none;
  background: #fff;
  padding: 0 6px;
  font-size: 14px;
  position: absolute;
  top: -10px;
  left: 14px;
}

.issue-input, .issue-select {
  border: 1px solid var(--Grey2);
  background: var(--White);
  width: 100%;
  color: var(--Text1);
  border-radius: 10px;
  outline: none;
  padding: 16px 14px;
  font-size: 15px;
}

.issue-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("/assets/Images/icon/DropdownArrow.svg");
  background-position: right 14px center;
  background-repeat: no-repeat;
}

.issue-action-buttons {
  border-top: 1px solid var(--Grey2);
  justify-content: flex-end;
  gap: 14px;
  width: 100%;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
}

.issue-btn-cancel {
  background: var(--White);
  color: var(--Red);
  border: 1px solid var(--Red);
  cursor: pointer;
  border-radius: 8px;
  width: 130px;
  height: 46px;
  font-size: 16px;
  font-weight: 500;
}

.issue-btn-add {
  background: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  width: 130px;
  height: 46px;
  font-size: 16px;
  font-weight: 500;
}

.custom-modal-overlay-issue {
  z-index: 999;
  background: rgba(0, 0, 0, .45);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.custom-modal-issue {
  background: #fff;
  border-radius: 10px;
  width: 1080px;
  max-width: 95%;
  padding: 20px;
  animation: .3s fadeIn;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.custom-modal-body-issue {
  color: var(--Text1);
}

.close-btn-issue {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 25px;
}

.close-btn-issue:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/components/JournalEditSidebarContent/Archive/JournalArchiveData/ArchiveVolume/ArchiveVolume.css [app-client] (css) */
.volume-wrapper {
  width: 100%;
}

.header-volume {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.add-btn-volume {
  background-color: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  height: 40px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.add-btn-volume:hover {
  background: #0056b3;
}

.btn-icon-volume, .btn-text-volume {
  align-items: center;
  display: flex;
}

.search-box-volume {
  border: 1px solid var(--Grey2);
  color: var(--Text1);
  background-color: var(--White);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
}

.no-data-wrapper-volume {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  display: flex;
}

.no-data-wrapper-volume img {
  opacity: .8;
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.no-data-wrapper-volume p {
  color: var(--Text1);
  font-size: 18px;
  font-weight: 500;
}

.volume-table-container {
  width: 100%;
  margin-top: 10px;
  overflow-x: auto;
}

.volume-table {
  border-collapse: collapse;
  background: var(--White);
  width: 100%;
  color: var(--Text1);
  border-radius: 8px;
  overflow: hidden;
}

.volume-table th, .volume-table td {
  border-bottom: 2px dashed var(--Grey2);
  text-align: start;
  padding: 12px 15px;
  font-size: 14px;
}

.volume-table th {
  background-color: #fafafa;
  font-weight: 600;
}

.action-buttons-volume {
  gap: 8px;
  display: flex;
}

.edit-btn-volume, .delete-btn-volume {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 4px;
  transition: background .2s;
}

.edit-btn-volume:hover {
  background: rgba(255, 193, 7, .15);
}

.delete-btn-volume:hover {
  background: rgba(220, 53, 69, .15);
}

.volume-form-container {
  flex-direction: column;
  gap: 30px;
  display: flex;
}

.volume-form-container h3 {
  margin-bottom: 10px;
}

.volume-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.volume-btn-cancel {
  background: var(--White);
  color: var(--Red);
  border: 1px solid var(--Red);
  cursor: pointer;
  border-radius: 6px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.volume-btn-cancel:hover {
  background: #f5c6cb;
}

.volume-btn-add {
  background: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 6px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.volume-btn-add:hover {
  background: #0056b3;
}

.custom-modal-overlay-volume {
  z-index: 999;
  background: rgba(0, 0, 0, .45);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.custom-modal-volume {
  background: #fff;
  border-radius: 10px;
  width: 536px;
  max-width: 90%;
  padding: 20px;
  animation: .3s fadeIn;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.custom-modal-body-volume {
  color: var(--Text1);
}

.close-btn-volume {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 25px;
}

.close-btn-volume:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* [project]/components/JournalEditSidebarContent/AdvertisingPolicy/AdvertisingPolicy.css [app-client] (css) */
.AdvertisingPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.AdvertisingPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.AdvertisingPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-AdvertisingPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-AdvertisingPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-AdvertisingPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/ReprintsPolicy/ReprintsPolicy.css [app-client] (css) */
.ReprintsPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.ReprintsPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.ReprintsPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-ReprintsPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-ReprintsPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-ReprintsPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/ConflictOfInterest/ConflictOfInterest.css [app-client] (css) */
.ConflictOfInterestPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.ConflictOfInterestPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.ConflictOfInterestPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-ConflictOfInterestPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-ConflictOfInterestPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-ConflictOfInterestPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/HumanAndAnimalRights/HumanAndAnimalRights.css [app-client] (css) */
.HumanAndAnimalRightsPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.HumanAndAnimalRightsPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.HumanAndAnimalRightsPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-HumanAndAnimalRightsPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-HumanAndAnimalRightsPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-HumanAndAnimalRightsPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/InformedConsent/InformedConsent.css [app-client] (css) */
.InformedConsentPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.InformedConsentPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.InformedConsentPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-InformedConsentPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-InformedConsentPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-InformedConsentPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/DataSharingPolicy/DataSharingPolicy.css [app-client] (css) */
.DataSharingPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.DataSharingPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.DataSharingPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-DataSharingPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-DataSharingPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-DataSharingPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/Ethics/Ethics.css [app-client] (css) */
.EthicsPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.EthicsPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.EthicsPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-EthicsPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-EthicsPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-EthicsPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/JournalHomeWrap/JournalHomeWrapper.css [app-client] (css) */
.journal-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.journal-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.journal-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditTopTabContent/IndexingDatabases/IndexingDatabases.css [app-client] (css) */
.header-idb {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.add-btn-idb {
  background-color: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  min-width: 192px;
  height: 40px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.add-btn-idb:hover {
  background: #0056b3;
}

.btn-icon-idb, .btn-text-idb {
  align-items: center;
  display: flex;
}

.search-box-idb {
  border: 1px solid var(--Grey2);
  color: var(--Text1);
  background-color: var(--White);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
}

.no-data-wrapper-idb {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  display: flex;
}

.no-data-wrapper-idb img {
  opacity: .8;
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.no-data-wrapper-idb p {
  color: var(--Text1);
  font-size: 18px;
  font-weight: 500;
}

.idb-table-container {
  width: 100%;
  margin-top: 10px;
  overflow-x: auto;
}

.idb-databases-table {
  border-collapse: collapse;
  background: var(--White);
  width: 100%;
  color: var(--Text1);
  border-radius: 8px;
  overflow: hidden;
}

.idb-databases-table th, .idb-databases-table td {
  border-bottom: 2px dashed var(--Grey2);
  text-align: start;
  padding: 12px 15px;
  font-size: 14px;
}

.idb-databases-table th {
  background-color: #fafafa;
  font-weight: 600;
}

.title-cell-idb, .url-cell-idb {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 220px;
  overflow: hidden;
}

.url-cell-idb a {
  color: #0073e6;
  text-decoration: none;
}

.url-cell-idb a:hover {
  text-decoration: underline;
}

.action-buttons-idb {
  gap: 8px;
  display: flex;
}

.edit-btn-idb, .delete-btn-idb {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 4px;
  transition: background .2s;
}

.edit-btn-idb:hover {
  background: rgba(255, 193, 7, .15);
}

.delete-btn-idb:hover {
  background: rgba(220, 53, 69, .15);
}

.idb-form-container {
  flex-direction: column;
  gap: 30px;
  display: flex;
}

.idb-form-container h3 {
  margin-bottom: 10px;
}

.idb-input {
  width: 100%;
  color: var(--Text1);
  background-color: var(--White);
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 8px 0 16px;
  padding: 10px;
  font-size: 14px;
}

.idb-input:focus {
  border-color: var(--Primary);
  outline: none;
  box-shadow: 0 0 4px rgba(0, 123, 255, .25);
}

.idb-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.idb-action-buttons .idb-btn-cancel {
  background: var(--White);
  color: var(--Red);
  cursor: pointer;
  border: none;
  border: 1px solid var(--Red);
  border-radius: 6px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.idb-action-buttons .idb-btn-cancel:hover {
  background: #f5c6cb;
}

.idb-action-buttons .idb-btn-add {
  background: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 6px;
  width: 120px;
  height: 46px;
  font-size: 18px;
}

.idb-action-buttons .idb-btn-add:hover {
  background: #0056b3;
}

.custom-modal-overlay-idb {
  z-index: 999;
  background: rgba(0, 0, 0, .45);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.custom-modal-idb {
  background: #fff;
  border-radius: 10px;
  width: 536px;
  max-width: 90%;
  height: 343px;
  padding: 20px;
  animation: .3s fadeIn;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.custom-modal-body-idb {
  color: var(--Text1);
}

.close-btn-idb {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 25px;
}

.close-btn-idb:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/components/JournalEditTopTabContent/JournalHighlights/JournalHighlights.css [app-client] (css) */
.header-jh {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.NoHighlights {
  width: 100%;
}

.add-btn-jh {
  background-color: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 220px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.add-btn-jh:hover {
  background: #0056b3;
}

.btn-icon-jh, .btn-text-jh {
  align-items: center;
  display: flex;
}

.no-data-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  display: flex;
}

.no-data-wrapper img {
  opacity: .8;
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.no-data-wrapper p {
  color: var(--Text1);
  font-size: 18px;
  font-weight: 500;
}

.highlights-table-container {
  width: 100%;
  margin-top: 10px;
  overflow-x: auto;
}

.highlights-table {
  border-collapse: collapse;
  width: 100%;
  color: var(--Text1);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.highlights-table th, .highlights-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 15px;
  font-size: 14px;
}

.highlights-table th {
  background-color: #fafafa;
  font-weight: 600;
}

.description-cell {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 250px;
  overflow: hidden;
}

.description-cell div {
  white-space: normal;
  text-overflow: ellipsis;
  max-width: 260px;
  overflow: hidden;
}

.description-cell p {
  margin: 0;
}

.title-cell {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 250px;
  overflow: hidden;
}

.action-buttons {
  gap: 8px;
  display: flex;
}

.edit-btn, .delete-btn {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 4px;
  transition: background .2s;
}

.edit-btn:hover {
  background: rgba(255, 193, 7, .15);
}

.delete-btn:hover {
  background: rgba(220, 53, 69, .15);
}

.modal-overlay {
  background: rgba(0, 0, 0, .4);
  justify-content: center;
  align-items: center;
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 8px;
  width: 600px;
  max-height: 85vh;
  padding: 20px;
  overflow-y: auto;
}

.journal-top-jhf {
  margin-top: 10px;
}

.journal-action-buttons-jhf {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.btn-cancel-jhf {
  color: var(--Red);
  cursor: pointer;
  background: unset;
  border: 1px solid var(--Red);
  border-radius: 6px;
  width: 120px;
  height: 46px;
  padding: 8px 16px;
  font-size: 18px;
}

.btn-cancel-jhf:hover {
  background: #f5c6cb;
}

.btn-add-jhf {
  color: #fff;
  cursor: pointer;
  background: #007bff;
  border: none;
  border-radius: 6px;
  width: 120px;
  height: 46px;
  padding: 8px 16px;
  font-size: 18px;
}

.btn-add-jhf:hover {
  background: #0056b3;
}

.custom-modal-overlay {
  z-index: 999;
  background: rgba(0, 0, 0, .45);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.custom-modal {
  background: #fff;
  border-radius: 10px;
  width: 1080px;
  max-width: 90%;
  padding: 20px;
  animation: .3s fadeIn;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

.custom-modal-body {
  color: var(--Text1);
  margin-top: 10px;
}

.close-btn {
  cursor: pointer;
  color: #555;
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 12px;
  right: 12px;
}

.close-btn:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/components/JournalEditTopTabContent/PublicationTimeline/PublicationTimelineTab.css [app-client] (css) */
.journal-form-container-pubtime {
  flex-direction: column;
  gap: 24px;
  width: 100%;
  display: flex;
}

.text-container-pubtime {
  flex-direction: column;
  gap: 16px;
  width: 456px;
  display: flex;
}

.button-group-pubtime {
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.cancel-btn-pubtime {
  color: #e74c3c;
  cursor: pointer;
  background: none;
  border: 1px solid #e74c3c;
  border-radius: 12px;
  width: 120px;
  height: 56px;
  padding: 8px 16px;
  font-size: 18px;
}

.draft-btn-pubtime {
  background: var(--White);
  border: 1px solid var(--Primary);
  cursor: pointer;
  color: var(--Primary);
  border-radius: 12px;
  width: 167px;
  height: 56px;
  padding: 8px 16px;
  font-size: 18px;
}

.update-btn-pubtime {
  background: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 12px;
  width: 120px;
  height: 56px;
  padding: 8px 16px;
  font-size: 18px;
}

/* [project]/components/JournalEditSidebarContent/GenerativeAIPolicy/GenerativeAIPolicy.css [app-client] (css) */
.GenerativeAIPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.GenerativeAIPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.GenerativeAIPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-GenerativeAIPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-GenerativeAIPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-GenerativeAIPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/TermsAndConditions/TermsAndConditions.css [app-client] (css) */
.TermsAndConditionsPolicy-input-title {
  border: 1px solid var(--Grey2);
  width: 100%;
  color: var(--Text1);
  box-sizing: border-box;
  background-color: var(--White);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.1rem;
}

.TermsAndConditionsPolicy-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.TermsAndConditionsPolicy-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-TermsAndConditionsPolicy {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-TermsAndConditionsPolicy {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-TermsAndConditionsPolicy {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/JournalEditSidebarContent/ContactUs/ContactUs.css [app-client] (css) */
.ContactUs-container {
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  display: flex;
}

.ContactUs-text-container {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.ContactUs-text-container input, .ContactUs-text-container textarea {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  outline: none;
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .2s;
}

.ContactUs-text-container input:focus, .ContactUs-text-container textarea:focus {
  border-color: #1a73e8;
}

.ContactUs-action-buttons {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  display: flex;
}

.ContactUs-action-buttons button {
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  padding: 8px 16px;
}

.btn-cancel-ContactUs {
  background: unset;
  color: var(--Red);
  border: 1px solid var(--Red);
}

.btn-draft-ContactUs {
  background: unset;
  color: var(--Primary);
  border: 1px solid var(--Primary);
}

.btn-update-ContactUs {
  color: #fff;
  background: #007bff;
  border: none;
}

/* [project]/components/ContentDashboard/Configuration/Configuration.css [app-client] (css) */
.configuration-container {
  background: var(--White);
  border-radius: 12px;
  flex-direction: column;
  width: 100%;
  height: 97vh;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.config-table-wrapper {
  flex: 1;
  padding-bottom: 10px;
  overflow-y: auto;
}

.config-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  display: flex;
}

.config-header-left {
  width: 320px;
}

.config-header-right {
  align-items: center;
  gap: 12px;
  display: flex;
}

.util-btn {
  background: var(--White);
  border: 1px solid var(--Grey2);
  cursor: pointer;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  display: flex;
}

.util-btn:hover {
  background: var(--Grey1);
}

.config-footer {
  color: var(--Text1);
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 20px;
  font-size: 14px;
  display: flex;
}

.config-footer-left {
  color: var(--Text2);
}

.config-footer-center {
  align-items: center;
  gap: 6px;
  display: flex;
}

.config-footer-right {
  align-items: center;
  gap: 8px;
  display: flex;
}

.items-label {
  color: var(--Text2);
  font-size: 14px;
}

.items-dropdown {
  border: 1px solid var(--Grey2);
  background: var(--Grey1);
  cursor: pointer;
  color: var(--Text1);
  border-radius: 6px;
  padding: 6px 10px;
}

.page-number, .page-arrow {
  cursor: pointer;
  color: var(--Text1);
  background: none;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
}

.page-number.active {
  background: var(--Primary);
  color: var(--White);
  border-color: var(--Primary);
}

.page-number:hover, .page-arrow:hover {
  background: var(--Grey1);
}

/* [project]/components/ConfigurationTableData/ConfigurationTableData.css [app-client] (css) */
.config-table-container {
  width: 100%;
  margin-top: 10px;
}

.config-table {
  border-collapse: collapse;
  width: 100%;
  color: var(--Text1);
  font-size: 14px;
}

.config-table th {
  text-align: left;
  color: #333;
  border-bottom: 1px solid var(--Grey2);
  background: #fafafa;
  padding: 14px 10px;
  font-weight: 600;
}

.config-table td {
  border-bottom: 1px dashed var(--Grey2);
  padding: 16px 10px;
}

.config-table-header {
  background: var(--TableHead);
  border-radius: 10px;
}

.config-table-header th {
  color: var(--Text1);
  border-bottom: 1px solid var(--Grey2);
  background: none;
  padding: 14px 12px;
  font-weight: 600;
}

.config-table-header th:first-child {
  border-top-left-radius: 10px;
}

.config-table-header th:last-child {
  border-top-right-radius: 10px;
}

.sort-icons {
  opacity: .4;
  flex-direction: column;
  margin-left: 6px;
  display: inline-flex;
  position: relative;
  top: -4px;
}

.sort-icons img.active {
  opacity: 1;
  filter: brightness(0) saturate() invert(29%) sepia(94%) saturate(1732%) hue-rotate(202deg) brightness(95%) contrast(96%);
}

th {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.config-action-buttons {
  align-items: center;
  gap: 10px;
  display: flex;
}

.action-btn {
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  display: flex;
}

.yellow-btn {
  background: #ffe8b3;
}

.green-btn {
  background: #d7f7d7;
}

.red-btn {
  background: #ffd6d6;
}

/* [project]/components/ConfigurationModals/AssignRoleModal/AssignRoleModal.css [app-client] (css) */
.assign-overlay {
  z-index: 2000;
  color: var(--Primary);
  background: rgba(0, 0, 0, .35);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.assign-modal {
  background: var(--White);
  border-radius: 12px;
  width: 900px;
  animation: .25s ease-out popIn;
  overflow: hidden;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.assign-header {
  border-bottom: 1px solid var(--Grey2);
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  display: flex;
}

.assign-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.assign-close-btn {
  cursor: pointer;
  background: none;
  border: none;
}

.assign-body {
  padding: 30px 26px;
}

.assign-grid {
  grid-template-columns: 1fr 1fr;
  gap: 26px 40px;
  display: grid;
}

.assign-field {
  flex-direction: column;
  gap: 6px;
  display: flex;
  position: relative;
}

.assign-field label {
  color: var(--Primary);
  z-index: 2;
  background: #fff;
  padding: 0 6px;
  font-size: 14px;
  position: absolute;
  top: -10px;
  left: 14px;
}

.assign-field input, .assign-field select {
  border: 1px solid var(--Primary);
  background: var(--White);
  color: var(--Text1);
  border-radius: 10px;
  outline: none;
  padding: 14px 12px;
  font-size: 15px;
}

.assign-field select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.assign-field.full {
  grid-column: span 2;
}

.assign-actions {
  justify-content: flex-end;
  gap: 14px;
  margin-top: 40px;
  padding: 10px 0;
  display: flex;
}

.assign-cancel-btn {
  background: var(--White);
  border: 1px solid var(--Red);
  color: var(--Red);
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 16px;
}

.assign-save-btn {
  background: var(--Primary);
  color: var(--White);
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 16px;
}

/* [project]/components/ConfigurationModals/MemberDetails/MemberDetailsModal.css [app-client] (css) */
.details-overlay {
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  background: rgba(0, 0, 0, .45);
  transition: opacity .4s;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.details-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.details-panel {
  z-index: 1001;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.24, .78, .36, 1);
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  box-shadow: -4px 0 20px rgba(0, 0, 0, .1);
}

.details-panel.open {
  transform: translateX(0);
}

.details-header {
  border-bottom: 1px solid var(--Grey2);
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  display: flex;
}

.details-close-btn {
  cursor: pointer;
  background: none;
  border: none;
}

.details-body {
  flex-direction: column;
  gap: 18px;
  padding: 22px 26px;
  display: flex;
}

.details-row label {
  color: var(--Text1);
  font-size: 14px;
}

.details-row p, .details-row ul li {
  color: var(--Primary);
  font-weight: 500;
}

.details-row p:hover, .details-row ul li:hover {
  cursor: pointer;
  opacity: .75;
  text-decoration: underline;
}

.details-body {
  padding: 30px 40px;
}

.details-grid {
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  display: grid;
}

.details-row {
  grid-template-columns: 160px 1fr;
  align-items: center;
  margin-bottom: 22px;
  display: grid;
}

.details-row .label {
  color: var(--Text1);
  font-size: 15px;
  font-weight: 500;
}

.details-row .value {
  color: var(--Text1);
  font-size: 16px;
  font-weight: 500;
}

.details-row .value.blue, .journal-list li.blue {
  color: var(--Primary);
  cursor: pointer;
}

.journal-list {
  margin-top: 6px;
  padding-left: 0;
  list-style: none;
}

.journal-list li {
  margin-bottom: 6px;
}

.journal-list li .blue:hover {
  text-decoration: underline;
}

.details-row.top-align {
  align-items: flex-start;
}

/* [project]/components/ConfigurationModals/RemoveMemberModal/RemoveMemberModal.css [app-client] (css) */
.remove-overlay {
  opacity: 1;
  pointer-events: none;
  z-index: 1090;
  background: rgba(0, 0, 0, .45);
  justify-content: center;
  align-items: center;
  transition: opacity .25s;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.remove-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.remove-modal {
  background: var(--White);
  opacity: 0;
  z-index: 1100;
  border-radius: 12px;
  width: 480px;
  transition: transform .25s, opacity .25s;
  transform: scale(.95);
}

.remove-modal.open {
  opacity: 1;
  transform: scale(1);
}

.remove-header {
  border-bottom: 1px solid var(--Grey2);
  justify-content: space-between;
  padding: 18px 24px;
  display: flex;
}

.remove-close-btn {
  cursor: pointer;
  background: none;
  border: none;
}

.remove-body {
  padding: 22px 24px;
}

.remove-warning {
  color: var(--Text1);
  margin-bottom: 16px;
}

.remove-input {
  border: 1px solid var(--Grey3);
  background: var(--White);
  width: 100%;
  color: var(--Text1);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 12px;
}

.remove-actions {
  justify-content: flex-end;
  gap: 12px;
  display: flex;
}

.remove-cancel-btn {
  background: var(--White);
  color: var(--Primary);
  border: 1px solid var(--Primary);
  cursor: pointer;
  border-radius: 8px;
  padding: 10px 18px;
}

.remove-delete-btn {
  background: var(--Red);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
}

/*# sourceMappingURL=_3b0bfe1e._.css.map*/