:root {
  --untitled-ui--gray100: #f2f4f7;
  --untitled-ui--gray600: #475467;
  --untitled-ui--primary600: #7f56d9;
  --untitled-ui--white: white;
  --untitled-ui--primary700: #6941c6;
  --untitled-ui--primary100: #f4ebff;
  --untitled-ui--gray500: #667085;
  --untitled-ui--gray700: #344054;
  --untitled-ui--gray50-2: #f9fafb;
  --untitled-ui--gray900: #101828;
  --untitled-ui--gray200: #eaecf0;
  --untitled-ui--gray300: #d0d5dd;
  --untitled-ui--gray800: #1d2939;
  --purple: #afa2da;
  --teal: #0b9d9f;
  --blue: #4366ff;
  --green: #038744;
  --codeless-purple: #7b52f7;
  --untitled-ui--success50: #ecfdf3;
  --untitled-ui--primary800: #53389e;
  --untitled-ui--success700: #027a48;
}

.auth-success {
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  background-color: #c1ffc1;
  border-radius: 5px;
  font-family: 'DM Sans';
  font-weight: 500;
  color: #000000;
}

.auth-error {
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
  background-color: #ffc1c1;
  border-radius: 5px;
  font-family: 'DM Sans';
  font-weight: 500;
  color: #000000;
}

.image-request strong {
  font-family: 'DM Sans';
  font-size: 16px;
}

.image-request {
  font-family: 'DM Sans';
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.effort {
  font-size: 15px;
  color: #585858;
  font-weight: 600;
}

.task-title {
  font-family: 'DM Sans';
  margin-top: 10px;
  margin-bottom: 20px;
}

.task-card {
  padding: 15px 20px 15px 20px;
  border: 1px solid #dadde2;
  border-radius: 7px;
  margin-bottom: 50px;
}

.date-header {
  font-family: 'DM Sans';
  font-size: 24px;
}

.submit-btn {
  background-color: var(--codeless-purple);
  color: #fff;
  border-radius: 5px;
  width: auto;
  height: 45px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: all .2s;
}

.submit-btn:hover {
  background-color: #6741d8;
}

.client-dropdown {
  width: 280px;
  position: relative;
  font-family: system-ui, sans-serif;
  margin-top: 30px;
  margin-bottom: 30px;
}

.selected {
  border: 1px solid var(--untitled-ui--gray200);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #fff;
  height: 45px;
  font-family: 'DM Sans';
}

.selected img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 4px;
  object-fit: contain;
}

.selected span {
  flex: 1;
  font-weight: 500;
  font-size: 15px;
  color: #111827;
}

.arrow {
  font-size: 12px;
  color: #888;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid var(--untitled-ui--gray200);
  border-radius: 6px;
  margin-top: 4px;
  display: none;
  z-index: 999;
}

.option {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  font-family: 'DM Sans';
  font-weight: 500;
}

.option img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 4px;
  object-fit: contain;
}

.option:hover {
  background-color: #f3f4f6;
}

.upload-box {
  margin-bottom: 40px;
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  transition: background 0.2s ease;
}

.upload-content {
  font-family: 'DM Sans';
}

.upload-box:hover {
  background: #f4f4f4;
}

.upload-content .upload-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.upload-hint {
  font-size: 12px;
  color: #6b7280;
}

.tips-section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: 'DM Sans';
  color: var(--untitled-ui--gray900);
}

.tips-section ul {
  padding-left: 20px;
  list-style-type: disc;
  color: #374151;
}

.tips-section li {
  margin-bottom: 12px;
  font-family: 'DM Sans';
  font-size: 15px;
}

.hidden {
  display: none;
}

#resultBox {
  margin-top: 50px;
}

#previewImage {
  margin-top: 15px;
}

.outputH2 {
  font-family: 'DM Sans';
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.tool-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.tool-card:hover {
  border: 1px solid var(--codeless-purple);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tool-icon {
  font-size: 24px;
  background: #f3f4f6;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  font-family: 'DM Sans';
}

.tool-desc {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 16px;
  font-family: 'DM Sans';
}

.tool-link {
  font-size: 14px;
  font-weight: 500;
  color: #7b52f7;
  text-decoration: none;
  font-family: 'DM Sans';
}

.tool-link:hover {
  text-decoration: underline;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.navbar {
  border-bottom: 1px solid var(--untitled-ui--gray100);
  height: 75px;
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
}

.navbar-flex {
  justify-content: space-between;
  align-items: center;
  height: 75px;
  display: flex;
}

.navbar-left {
  width: 50%;
}

.navbar-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.navbar-logo-link {
  margin-left: -5px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.navbar-logo-link:hover {
  opacity: .85;
}

.user-status {
  background-color: #7b52f73b;
  color: #7b52f7;
  padding: 3px 5px 3px 5px;
  border-radius: 3px;
  margin-top: 10px;
  font-family: 'DM Sans';
  font-weight: 500;
  text-transform: capitalize;
}

.navbar-logo {
  transition: all .2s;
}

.navbar-container {
  max-width: 1250px;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar-dropdown-toggle {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  margin-right: -10px;
  display: flex;
}

.uui-text-size-small {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: .875rem;
  line-height: 1.5;
}

.show-tablet {
  display: none;
}

.uui-button {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--primary600);
  background-color: var(--untitled-ui--primary600);
  color: var(--untitled-ui--white);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button:hover {
  border-color: var(--untitled-ui--primary700);
  background-color: var(--untitled-ui--primary700);
}

.uui-button:focus {
  background-color: var(--untitled-ui--primary600);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--primary100);
}

.uui-dropdown-icon {
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 1rem;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
}

.uui-icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.uui-navbar07_item-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
}

.uui-navbar07_icon-wrapper {
  color: var(--untitled-ui--primary600);
  flex: none;
}

.uui-navbar07_dropdown-link {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  border-radius: .5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: .75rem;
  text-decoration: none;
  transition: all .3s;
  display: grid;
}

.uui-navbar07_dropdown-link:hover {
  background-color: var(--untitled-ui--gray50-2);
}

.uui-navbar07_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: .5rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.uui-navbar07_component {
  border-bottom: 1px solid var(--untitled-ui--gray100);
  background-color: #fff;
  align-items: center;
  min-height: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.uui-navbar07_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.uui-navbar07_logo-link {
  padding-left: 0;
}

.uui-navbar07_menu {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.uui-navbar07_link {
  color: var(--untitled-ui--gray600);
  align-items: center;
  padding: .75rem 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
}

.uui-navbar07_link:hover {
  color: var(--untitled-ui--gray700);
}

.uui-navbar07_link.w--current {
  color: #000;
}

.uui-navbar07_dropdown-toggle {
  color: var(--untitled-ui--gray600);
  align-items: center;
  padding: .75rem 2.5rem .75rem 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.uui-navbar07_dropdown-toggle:hover {
  color: var(--untitled-ui--gray700);
}

.uui-navbar07_menu-right {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.uui-navbar07_menu-button {
  padding: 0;
}

.uui-navbar07_dropdown-list {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #10182808;
}

.uui-navbar07_dropdown-list.w--open {
  border: 1px solid var(--untitled-ui--gray200);
  background-color: var(--untitled-ui--white);
  border-radius: .75rem;
  width: 20rem;
  padding: .75rem;
  right: -100%;
}

.uui-button-secondary-gray {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--gray300);
  background-color: var(--untitled-ui--white);
  color: var(--untitled-ui--gray700);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-secondary-gray:hover {
  background-color: var(--untitled-ui--gray50-2);
  color: var(--untitled-ui--gray800);
}

.uui-button-secondary-gray:focus {
  background-color: var(--untitled-ui--white);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--gray100);
}

.uui-button-secondary-gray.show-tablet {
  display: none;
}

.uui-button-tertiary-gray {
  grid-column-gap: .5rem;
  color: var(--untitled-ui--gray600);
  white-space: nowrap;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.uui-button-tertiary-gray:hover {
  background-color: var(--untitled-ui--gray50-2);
  color: var(--untitled-ui--gray700);
}

.uui-navbar07_button-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: center;
  display: flex;
}

.uui-logo_component {
  flex-wrap: nowrap;
  width: auto;
  height: 2rem;
  display: flex;
}

.uui-logo_logomark {
  border: .1px solid #dae0e8;
  border-radius: .5rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 1px #1018280f, 0 1px 2px #1018281a;
}

.uui-styleguide_logomark-bg {
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  position: absolute;
  inset: 0%;
}

.uui-logo_logomark-blur {
  z-index: 2;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: #fff3;
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
  width: 100%;
  height: 50%;
  position: absolute;
  inset: 50% 0% 0%;
  overflow: hidden;
}

.uui-logo_logomark-dot {
  z-index: 1;
  background-image: linear-gradient(26.5deg, #6941c6, #53389e);
  border-radius: 50%;
  width: 50%;
  height: 50%;
  position: relative;
}

.uui-logo_logotype {
  flex: none;
  width: auto;
  height: 100%;
}

.uui-navbar07_item-heading {
  color: var(--untitled-ui--gray900);
  margin-top: 0;
  margin-bottom: .25rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 600;
}

.uui-logo_image {
  flex: none;
  width: auto;
  height: 100%;
  display: none;
}

.navbar-dropdown-text {
  color: var(--untitled-ui--gray900);
  font-family: DM Sans, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 27px;
}

.navbar-dropdown-img {
  border-radius: 30px;
}

.navbar-dropdown-list.w--open {
  border: 1px solid var(--untitled-ui--gray100);
  background-color: #fff;
  border-radius: 4px;
  margin-top: -10px;
}

.navbar-dropdown-link {
  color: var(--untitled-ui--gray800);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: all .2s;
}

.navbar-dropdown-link:hover {
  background-color: #f8f8f8;
}

.dashboard-section {
  padding-top: 140px;
  padding-bottom: 80px;
}

.archived-toggle {
  margin-top: 3rem;
  text-align: center;
  cursor: pointer;
  font-family: 'DM Sans';
  font-size: 15px;
  font-weight: 500;
  color: #666;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.archived-toggle:hover {
  color: #000;
}

.archived-section {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.dashboard-status-edits,
.dashboard-status-uploads,
.dashboard-status-published {
  background-color: #f2f2f2;
  padding: 6px 10px;
  border-radius: 4px;
  font-family: 'DM Sans';
  font-weight: 600;
  font-size: 15px;
}

.no-msg {
  font-family: 'DM Sans';
  font-size: 16px;
}

.JAN {
  background-color: #E0F7FA;
  color: #006064;
}

.FEB {
  background-color: #FCE4EC;
  color: #880E4F;
}

.MAR {
  background-color: #F1F8E9;
  color: #33691E;
}

.APR {
  background-color: #FFF3E0;
  color: #E65100;
}

.MAY {
  background-color: #E8F5E9;
  color: #1B5E20;
}

.JUN {
  background-color: #E3F2FD;
  color: #0D47A1;
}

.JUL {
  background-color: #FBE9E7;
  color: #BF360C;
}

.AUG {
  background-color: #F3E5F5;
  color: #4A148C;
}

.SEP {
  background-color: #FFFDE7;
  color: #F57F17;
}

.OCT {
  background-color: #ECEFF1;
  color: #263238;
}

.NOV {
  background-color: #EFEBE9;
  color: #3E2723;
}

.DEC {
  background-color: #EDE7F6;
  color: #311B92;
}

.NA {
  background-color: #ECECEC;
  color: #4A4A4A;
}

.container {
  max-width: 1250px;
  padding-left: 30px;
  padding-right: 10px;
}

.body {
  border-radius: 10px;
}

.heading {
  color: var(--untitled-ui--gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-weight: 700;
}

.dashboard-rows {
  margin-top: 30px;
  padding: 0;
}

.dashboard-col {
  background-color: #836eca0d;
  border-radius: 7px;
  padding: 10px 10px 5px;
}

.dashboard-col-top {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.dashboard-col-top-status {
  color: #fff;
  background-color: #afa2da;
  border-radius: 5px;
  padding: 5px 7px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.dashboard-status-purple {
  background-color: var(--purple);
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.dashboard-col-purple {
  background-color: #836eca0d;
  border-radius: 7px;
  padding: 12px;
}

.dashboard-total-purple {
  color: var(--purple);
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.post-card {
  border: 1px solid var(--untitled-ui--gray200);
  background-color: #fff;
  border-radius: 7px;
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
}

.action-needed-label {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #FF6B6B;
  color: white;
  font-size: 12px;
  font-family: 'Dm Sans';
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.post-tags-bottom {
  margin-top: 12px;
}

.post-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.post-tag {
  background-color: #f2f2f2;
  color: #555;
  font-family: "DM Sans";
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: capitalize;
  display: inline-block;
}

.post-tag.priority {
  background-color: #7E57C2;
  color: white;
}

.post-tag.hold {
  background-color: #FFD166;
  color: #333;
}

.post-tag.priority {
  background-color: #7E57C2;
  color: #fff;
}

.post-tag.on-hold {
  background-color: #ffd166;
  color: #333;
}

.post-title {
  color: var(--untitled-ui--gray900);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.post-bottom-row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 10px;
  display: flex;
}

.post-bottom-col {
  flex-flow: column;
  display: flex;
}

.post-bottom-col-text {
  color: var(--untitled-ui--gray600);
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.post-bottom-col-month {
  text-align: center;
  border-radius: 2px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
  line-height: 24px;
}

.post-bottom-col-text-bold {
  color: var(--untitled-ui--gray800);
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.dashboard-col-teal {
  background-color: #0b9d9f0d;
  border-radius: 8px;
  padding: 12px;
}

.dashboard-status-teal {
  background-color: var(--teal);
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.dashboard-total-teal {
  color: var(--teal);
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.dashboard-col-blue {
  background-color: #4366ff0d;
  border-radius: 8px;
  padding: 12px;
}

.dashboard-status-blue {
  background-color: var(--blue);
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.dashboard-total-blue {
  color: var(--blue);
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.dashboard-col-green {
  background-color: #0387440d;
  border-radius: 8px;
  padding: 12px;
}

.dashboard-status-green {
  background-color: var(--green);
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.dashboard-total-green {
  color: var(--green);
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.loading-screen {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #7c3aed; /* match your purple */
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.dot1 {
  animation-delay: 0s;
}
.dot2 {
  animation-delay: 0.2s;
}
.dot3 {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.auth-section {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.auth-div {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  display: flex;
}

.auth-heading {
  color: var(--untitled-ui--gray900);
  text-align: center;
  margin-top: 0;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.auth-form-block {
  width: 100%;
  margin-bottom: 0;
}

.input-label {
  color: var(--untitled-ui--gray700);
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
}

.input-field {
  border: 1px solid var(--untitled-ui--gray200);
  color: var(--untitled-ui--gray800);
  border-radius: 5px;
  height: 43px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.auth-link {
  cursor: pointer;
}

.auth-link:hover {
  opacity: 85%;    
}

.auth-input-div {
  margin-bottom: 20px;
}

.result {
  margin-top: 24px;
  background: #f0f0ff;
  border: 1px solid #c7c7e6;
  border-left: 3px solid #7B4DF7;
  border-radius: 5px;
  padding: 16px;
  color: #2d2f45;
  font-family: "DM Sans";
  font-size: 14px;
  line-height: 1.4;
  word-break: break-all;
}

.result strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1b2f;
}

.auth-login-btn {
  background-color: var(--codeless-purple);
  color: #fff;
  border-radius: 5px;
  width: 100%;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: all .2s;
}

.auth-login-btn:hover {
  background-color: #6741d8;
}

.form {
  margin-bottom: 8px;
}

.pop-up-form {
  text-align: left;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  margin-top: 24px;
  display: flex;
}

.pop-up-text-input {
  background-color: #f7f9fa;
  border: 1px solid #eff1f3;
  border-radius: 3px;
  height: 44px;
  margin-bottom: 16px;
  padding: 10px 16px;
  font-size: 15px;
  line-height: 1.4px;
}

.pop-up-text-input::placeholder {
  color: #c2cdd8;
}

.pop-up-button {
  color: #fff;
  text-align: center;
  background-color: #272727;
  border-radius: 3px;
  flex: none;
  margin-bottom: 8px;
  padding: 8px 32px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity .2s;
}

.pop-up-button:hover {
  opacity: .8;
}

.pop-up-button:active {
  opacity: 1;
}

.card-open-background {
  background-color: #20202099;
  position: absolute;
  inset: 0%;
}

.card-open-exit-btn {
  opacity: .2;
  vertical-align: top;
  cursor: pointer;
  transition: opacity .2s;
  position: absolute;
  inset: 20px 20px auto auto;
}

.card-open-exit-btn:hover {
  opacity: .8;
}

.popup-form-error {
  color: #444;
  background-color: #dee5eb;
  border-radius: 6px;
  padding: 16px;
}

.pop-up-form-success {
  color: #33383f;
  background-color: #e9e9e9;
  border-radius: 4px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.card-open-wrapper {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.card-open-box {
  cursor: auto;
  background-color: #fbfbfc;
  border-radius: 12px;
  width: 1000px;
  padding: 0 40px 0 0;
  position: relative;
}

.pop-up-text-box {
  max-width: 650px;
}

.pop-up-paragraph {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4em;
}

.card-open-flex {
  display: flex;
}

.card-open-left {
  background-color: #fff;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 55%;
  padding: 30px 20px 30px 40px;
}

.card-open-right {
  border-left: 1px solid var(--untitled-ui--gray200);
  background-color: #fbfbfc;
  flex-flow: column;
  justify-content: space-between;
  width: 45%;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  display: flex;
}

.card-open-title {
  color: var(--untitled-ui--gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 30px;
  line-height: 40px;
}

.card-open-row {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 30px;
  display: flex;
}

.card-open-col {
  flex-flow: column;
  display: flex;
}

.card-open-text {
  color: var(--untitled-ui--gray600);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.card-open-text-bold {
  color: var(--untitled-ui--gray800);
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.card-open-col-month {
  text-align: center;
  border-radius: 2px;
  margin-top: 5px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.card-open-col-writer {
  color: #fff;
  text-align: center;
  background-color: #ff2ec0;
  border-radius: 2px;
  margin-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
}

.writer-color-0 { background-color: #f94144; }
.writer-color-1 { background-color: #f3722c; }
.writer-color-2 { background-color: #f8961e; }
.writer-color-3 { background-color: #43aa8b; }
.writer-color-4 { background-color: #577590; }
.writer-color-5 { background-color: #9a4dff; }
.writer-color-6 { background-color: #e056fd; }
.writer-color-7 { background-color: #ff6bcb; }
.writer-color-8 { background-color: #00b894; }
.writer-color-9 { background-color: #2d3436; }

.card-open-docs {
  margin-top: 30px;
}

.card-open-docs-form-block {
  margin-top: 30px;
  margin-bottom: 0;
}

.card-open-docs-form-block.w-form {
  border-top: 1px solid var(--untitled-ui--gray200);
  padding-top: 20px;
}

.modal-action-buttons {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--untitled-ui--gray200);
  padding-top: 20px;
}

.modal-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  font-family: 'DM Sans';
  font-weight: 600;
  cursor: pointer;
  background-color: #1ABC9C;
  color: white;
}

.modal-btn:hover {
  opacity: 85%;
}

.modal-btn.secondary {
  background-color: #FF6B6B;
}

.card-open-docs-label {
  color: var(--untitled-ui--gray700);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.submit-button {
  display: none;
}

.card-open-docs-div {
  margin-bottom: 20px;
}

.card-open-docs-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.card-open-docs-input {
  border: 1px solid var(--untitled-ui--gray200);
  color: var(--untitled-ui--gray800);
  border-radius: 5px;
  height: 43px;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.clickable-input {
  cursor: pointer !important;
  color: #1a1a1a;
  background-color: #ffffff !important;
}

.clickable-input:hover {
  background-color: #f1f1f1;
}

.comments-heading {
  color: var(--untitled-ui--gray800);
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 33px;
}

.comments-wrapper {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 20px;
}

.no-comments-msg {
  padding: 1rem;
  font-family: "DM Sans";
  font-size: 17px;
  font-weight: 500;
  color: #7d8592;
  text-align: center;
}

.comments-scroll-area {
  max-height: 300px;
  overflow-y: auto;
}

.comments-wrapper::-webkit-scrollbar {
  width: 6px;
}

.comments-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.comments-list {
  flex-flow: column;
  display: flex;
  overflow-x: hidden;
}

.comment {
  border: 1px solid var(--untitled-ui--gray200);
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
  padding: 9px 12px 12px 12px;
}

.comment-top {
  display: flex;
  align-items: center;
}

.comment-left {
  width: 80%;
}

.comment-right {
  width: 20%;
}

.comment-date {
  color: var(--untitled-ui--gray500);
  text-align: right;
  font-family: DM Sans, sans-serif;
  font-size: 12px;
  line-height: 12px;
}

.comment-name {
  color: var(--untitled-ui--gray800);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.comment-text {
  color: var(--untitled-ui--gray600);
  margin-top: 7px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  line-height: 25px;
  word-wrap: break-word;
}

.comment-form-block {
  margin-bottom: 0;
}

.mention-suggestions {
  background: #fff;
  border: 1px solid var(--untitled-ui--gray200);
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  z-index: 10;
  width: 300px;
  margin-top: 5px;
  border-radius: 5px;
}

.mention-option {
  padding: 6px 10px;
  font-family: "DM Sans";
  cursor: pointer;
}

.mention-option:hover {
  background-color: #f0f0f0;
}

.comment-submit-btn {
  float: right;
  background-color: var(--codeless-purple);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 42.5px;
  margin-top: -43px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.comment-submit-btn:hover {
  background-color: #6741d8;
}

.comment-input-field {
  border: 1px solid var(--untitled-ui--gray200);
  color: var(--untitled-ui--gray800);
  border-radius: 5px;
  height: 43px;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .navbar-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hide-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }

  .uui-dropdown-icon {
    color: var(--untitled-ui--gray500);
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-bottom {
    background-color: var(--untitled-ui--gray700);
    border-radius: 1rem;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle {
    background-color: var(--untitled-ui--gray700);
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-icon_line-top {
    background-color: var(--untitled-ui--gray700);
    border-radius: 1rem;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_component {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .uui-navbar07_dropdown-link {
    padding-left: 0;
    padding-right: 0;
  }

  .uui-navbar07_dropdown-link:hover {
    background-color: #0000;
  }

  .uui-navbar07_dropdown-link-list {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .uui-navbar07_menu {
    border-top: 1px solid var(--untitled-ui--gray100);
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    align-items: flex-start;
    height: 100vh;
    margin-left: 0;
    padding: 1.5rem 2rem 5rem;
    position: absolute;
    overflow: auto;
  }

  .uui-navbar07_menu-left {
    grid-column-gap: 0px;
    grid-row-gap: .5rem;
    color: var(--untitled-ui--gray900);
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .uui-navbar07_link {
    color: var(--untitled-ui--gray900);
    width: 100%;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .uui-navbar07_link:hover {
    color: var(--untitled-ui--gray900);
  }

  .uui-navbar07_menu-dropdown {
    width: 100%;
    position: relative;
  }

  .uui-navbar07_dropdown-toggle {
    color: var(--untitled-ui--gray900);
    align-items: center;
    padding-top: .75rem;
    padding-bottom: .75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .uui-navbar07_dropdown-toggle:hover {
    color: var(--untitled-ui--gray900);
  }

  .uui-navbar07_menu-right {
    flex-direction: column-reverse;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 1.5rem;
    padding-bottom: 7rem;
  }

  .uui-navbar07_menu-button.w--open {
    background-color: #0000;
  }

  .uui-navbar07_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .uui-navbar07_dropdown-list.w--open {
    box-shadow: none;
    border-style: none;
    border-color: #0000;
    width: auto;
    padding: 0;
  }

  .uui-button-secondary-gray.show-tablet {
    display: block;
  }

  .uui-navbar07_button-wrapper {
    flex-direction: column-reverse;
    align-items: stretch;
    display: flex;
  }

  .dashboard-section {
    padding-bottom: 80px;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .pop-up-button {
    position: relative;
  }

  .card-open-box {
    background-color: #fff;
  }

  .card-open-left {
    width: 100%;
    padding-right: 0;
  }

  .card-open-right {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .navbar-dropdown-toggle {
    margin-right: -15px;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    border-color: var(--untitled-ui--primary600);
    background-color: var(--untitled-ui--primary600);
  }

  .uui-navbar07_dropdown-link-list {
    grid-row-gap: .5rem;
    max-width: none;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .uui-navbar07_component {
    min-height: 4.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-navbar07_menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-navbar07_link, .uui-navbar07_dropdown-toggle {
    font-size: 1rem;
  }

  .uui-button-secondary-gray {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray:hover {
    background-color: var(--untitled-ui--white);
    color: var(--untitled-ui--gray700);
  }

  .uui-button-tertiary-gray:hover {
    color: var(--untitled-ui--gray600);
    background-color: #0000;
  }

  .uui-styleguide_logomark-bg {
    background-image: url('../images/untitled-ui-logomark.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .dashboard-rows {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .pop-up-form {
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  .navbar-logo {
    width: 70%;
  }

  .navbar-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-dropdown-toggle {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .uui-navbar07_dropdown-link {
    padding-left: 0;
  }

  .navbar-dropdown-img {
    width: 25px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .auth-div {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .pop-up-text-input {
    width: 100%;
  }

  .pop-up-button {
    width: 100%;
    font-size: 16px;
  }

  .card-open-box {
    padding: 48px 24px 16px;
  }

  .card-open-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .card-open-title {
    margin-bottom: 0;
  }

  .card-open-row {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    margin-top: 20px;
  }

  .card-open-text, .card-open-text-bold {
    font-size: 15px;
    line-height: 25px;
  }

  .card-open-col-month {
    width: 18%;
  }

  .card-open-col-writer {
    width: 100%;
  }
}

#w-node-ec2d1c2d-9532-85d9-a07e-ecb41ddd7107-b106610f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}


@media (min-width: 992px) {
  #w-node-ec2d1c2d-9532-85d9-a07e-ecb41ddd7107-b106610f {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
  }  
}

@media screen and (max-width: 991px) {
  #w-node-ec2d1c2d-9532-85d9-a07e-ecb41ddd7107-b106610f {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ec2d1c2d-9532-85d9-a07e-ecb41ddd7107-b106610f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}