@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --adp-color-primary:         #7380ec;
  --adp-color-danger:          #ff7782;
  --adp-color-success:         #41fbb6;
  --adp-color-warning:         #ffbb55;
  --adp-color-white:           #fff;
  --adp-color-info-muted:      #7d8da1;
  --adp-color-info-light:      #dce1eb;
  --adp-color-dark:            #363949;
  --adp-color-light:           rgba(132, 139, 200, 0.18);
  --adp-color-primary-variant: #111e88;
  --adp-color-dark-variant:    #677483;
  --adp-color-background:      #f6f6f9;

  --adp-card-border-radius:    2rem;
  --adp-border-radius-1:       0.4rem;
  --adp-border-radius-2:       0.8rem;
  --adp-border-radius-3:       1.2rem;

  --adp-card-padding:          1.8rem;
  --adp-padding-1:             1.2rem;

  --adp-box-shadow:            0 2rem 3rem var(--adp-color-light);

  
  --adp-font:                  "Montserrat", 
                               system-ui, 
                               -apple-system, 
                               Segoe UI, Roboto, 
                               Arial, sans-serif;
  
  font-family: var(--adp-font);
}

.dark-theme-variables {
  --adp-color-background:      #181a1e;
  --adp-color-white:           #202528;
  --adp-color-dark:            #edeffd;
  --adp-color-dark-variant:    #a3bdcc;
  --adp-color-light:           rgba(0, 0, 0, 0.4);

  --adp-box-shadow:            0 2rem 3rem var(--adp-color-light);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: var(--adp-color-background);
  user-select: none;
  overflow-x: hidden;
}

.adp-shell section {
  color: var(--adp-color-dark);
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem auto 23rem;
}

.adp-container section {
  font-family: var(--adp-font);
}

.adp-shell a { color: var(--adp-color-dark); }
.adp-shell img { display: block; width: 100%; }
.adp-shell h1 { font-weight: 800; font-size: 1.8rem; }
.adp-shell h2 { font-size: 1.4rem; }
.adp-shell h3 { font-size: 0.87rem; }
.adp-shell h4 { font-size: 0.8rem; }
.adp-shell h5 { font-size: 0.77rem; }
.adp-shell small { font-size: 0.75rem; }

.adp-shell .profile-photo {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  overflow: hidden;
}

.adp-shell .text-muted { color: var(--adp-color-info-muted); }
.adp-shell p { color: var(--adp-color-dark-variant); }
.adp-shell b { color: var(--adp-color-dark); }
.adp-shell .primary { color: var(--adp-color-primary); }
.adp-shell .danger { color: var(--adp-color-danger); }
.adp-shell .success { color: var(--adp-color-success); }
.adp-shell .warning { color: var(--adp-color-warning); }





.adp-shell .adp-insights-section {
  margin-top: 1.4rem;
}

.adp-insights-section .adp-date {
  display: inline-block;
  background: var(--adp-color-light);
  border-radius: var(--adp-border-radius-1);
  margin-top: 1rem;
  padding: 0.5rem 1.6rem;
}

.adp-insights-section .adp-date input[type='date'] {
  background: transparent;
  color: var(--adp-color-dark);
}



.adp-insights-section .adp-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.adp-insights-section .adp-insights > div {
  background: var(--adp-color-white);
  padding: var(--adp-card-padding);
  border-radius: var(--adp-card-border-radius);
  margin-top: 1rem;
  box-shadow: var(--adp-box-shadow);
  transition: all 300ms ease;
}

.adp-insights-section .adp-insights > div:hover {
  box-shadow: none;
}

.adp-insights-section .adp-insights > div span {
  background: var(--adp-color-primary);
  padding: 0.5rem;
  border-radius: 50%;
  color: var(--adp-color-white);
  font-size: 2rem;
}

.adp-insights-section .adp-insights > div.adp-expenses span {
  background: var(--adp-color-danger);
}

.adp-insights-section .adp-insights > div.adp-income span {
  background: var(--adp-color-success);
}

.adp-insights-section .adp-insights > div .adp-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.adp-insights-section .adp-insights h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1rem;
}

.adp-insights-section .adp-insights .adp-progress {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
}

.adp-insights-section .adp-insights svg {
  display: block;
  width: 7rem;
  height: 7rem;
}

.adp-insights-section .adp-insights svg circle {
  fill: none;
  stroke: var(--adp-color-primary);
  stroke-width: 14;
  stroke-linecap: round;
  transform: translate(5px, 5px);
  stroke-dasharray: 110;
  stroke-dashoffset: 92;
}

.adp-shell .adp-insights .adp-sales svg circle {
  stroke-dashoffset: -30;
  stroke-dasharray: 200;
}

.adp-shell .adp-insights .adp-expenses svg circle {
  stroke-dashoffset: 20;
  stroke-dasharray: 80;
}

.adp-shell .adp-insights .adp-income svg circle {
  stroke-dashoffset: 35;
  stroke-dasharray: 110;
}

.adp-shell .adp-insights .adp-progress .adp-number {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.adp-shell .adp-insights small {
  margin-top: 1.6rem;
  display: block;
}


/* Recent Orders Feature */


.adp-insights-section .adp-recent-orders {
  margin-top: 2rem;
}

.adp-insights-section .adp-recent-orders h2 {
  margin-bottom: 0.8rem;
}

.adp-insights-section .adp-recent-orders table {
  background: var(--adp-color-white);
  width: 100%;
  border-radius: var(--adp-card-border-radius);
  padding: var(--adp-card-padding);
  text-align: center;
  box-shadow: var(--adp-box-shadow);
  transition: all 300ms ease;
}

.adp-insights-section .adp-recent-orders table:hover {
  box-shadow: none;
}

.adp-insights-section table tbody td {
  height: 2.8rem;
  border-bottom: 1px solid var(--adp-color-light);
  color: var(--adp-color-dark-variant);
}

.adp-insights-section table tbody tr:last-child td {
  border: none;
}

.adp-insights-section .adp-recent-orders a {
  text-align: center;
  display: block;
  margin: 1rem auto;
  color: var(--adp-color-primary);
}


/* right side column */

.adp-right-column-section {
  margin-top: 1.4rem;
}

.adp-right-column-section .adpr-header {
  display: flex;
  justify-content: end;
  gap: 2rem;
}

.adp-right-column-section .adpr-header button {
  display: none;
}

.adp-right-column-section .adp-theme-toggler {
  background: var(--adp-color-light);
  display: none; /* flex */
  justify-content: space-between;
  align-items: center;
  height: 1.6rem;
  width: 4.2rem;
  cursor: pointer;
  border-radius: var(--adp-border-radius-1);
}

.adp-right-column-section .adp-theme-toggler span {
  font-size: 1.2rem;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adp-right-column-section .adp-theme-toggler span.active {
  background: var(--adp-color-primary);
  color: white;
  border-radius: var(--adp-border-radius-1);
}

.adp-right-column-section .adpr-header .adp-profile {
  display: flex;
  gap: 2rem;
  text-align: right;
}

.adp-right-column-section .adp-recent-updates {
  margin-top: 1rem;
}

.adp-right-column-section .adp-recent-updates h2 {
  margin-bottom: 0.8rem;
}

.adp-right-column-section .adp-recent-updates .adp-updates {
  background: var(--adp-color-white);
  padding: var(--adp-card-padding);
  border-radius: var(--adp-card-border-radius);
  box-shadow: var(--adp-box-shadow);
  transition: all 300ms ease;
}

.adp-right-column-section .adp-recent-updates .adp-updates:hover {
  box-shadow: none;
}

.adp-right-column-section .adp-recent-updates .adp-updates .adp-update {
  display: grid;
  grid-template-columns: 2.6rem auto;
  gap: 1rem;
  margin-bottom: 1rem;
}






.adp-right-column-section .adp-sales-analytics {
  margin-top: 2rem;
}

.adp-right-column-section .adp-sales-analytics h2 {
  margin-bottom: 0.8rem;
}

.adp-right-column-section .adp-sales-analytics .adp-item {
  background: var(--adp-color-white);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
  padding: 1.4rem var(--adp-card-padding);
  border-radius: var(--adp-border-radius-3);
  box-shadow: var(--adp-box-shadow);
  transition: all 300ms ease;
}

.adp-right-column-section .adp-sales-analytics .adp-item:hover {
  box-shadow: none;
}

.adp-right-column-section .adp-sales-analytics .adp-item .adp-sa-right {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 0;
  width: 100%;
}

.adp-right-column-section .adp-sales-analytics .adp-item .adp-icon {
  padding: 0.6rem;
  color: var(--adp-color-white);
  border-radius: 50%;
  background: var(--adp-color-primary);
  display: flex;
}

.adp-right-column-section .adp-sales-analytics .adp-item.offline .adp-icon {
  background: var(--adp-color-danger);
}

.adp-right-column-section .adp-sales-analytics .adp-item.customers .adp-icon {
  background: var(--adp-color-success);
}

.adp-right-column-section .adp-sales-analytics .add-product {
  background: transparent;
  border: 2px dashed var(--adp-color-primary);
  color: var(--adp-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.adp-right-column-section .adp-sales-analytics .add-product:hover {
  background: var(--adp-color-primary);
  color: var(--adp-color-white);
}

.adp-right-column-section .adp-sales-analytics .add-product div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.adp-right-column-section .adp-sales-analytics .add-product div h3 {
  font-weight: 600;
}

/* ======== Breakpoints for Tablets and small Laptops ======== */

@media screen and (max-width: 1200px) {
  .adp-shell .adp-container {
    width: 94%;
    grid-template-columns: 7rem auto 23rem;
  }

  .adp-insights-section .adp-insights {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* .adp-insights-section .adp-recent-orders {
    width: 94%;
    position: absolute;
    left: 50%;
    transform: translateX(-25%);
    margin: 2rem 0 0 8.8rem;
  } */

  /* .adp-insights-section .adp-recent-orders table {
    width: 84vw;
  } */

  .adp-insights-section .adp-recent-orders table thead tr th:last-child,
  .adp-insights-section .adp-recent-orders table thead tr th:first-child {
    display: none;
  }
  .adp-insights-section .adp-recent-orders table tbody tr td:last-child,
  .adp-insights-section .adp-recent-orders table tbody tr td:first-child {
    display: none;
  }
}


/* ======== Breakpoints for small Tablets and Mobile ======== */


@media screen and (max-width: 768px) {
  .adp-shell {
    margin-top: 4rem;
  }

  .adp-shell .adp-container {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .adp-insights-section {
    margin-top: 8rem;
    padding: 0 1rem;
  }

  .adp-insights-section .adp-recent-orders {
    position: relative;
    margin: 3rem 0 0 0;
    width: 100%;
  }

  .adp-insights-section .adp-recent-orders table {
    width: 100%;
    margin: 0;
  }

  .adp-right-column-section {
    width: 94%;
    margin: 0 auto 4rem;
  }

  .adp-right-column-section .adpr-header {
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    padding: 0 0.8rem;
    height: 4.6rem;
    background: var(--adp-color-white);
    width: 100%;
    /* margin: 0; */
    margin-top: 4rem;
    z-index: 2;
    box-shadow: 0 1rem 1rem var(--adp-color-light);
  }

  .adp-right-column-section .adpr-header .adp-theme-toggler {
    width: 4.4rem;
    position: absolute;
    left: 66%;
  }

  .adp-right-column-section .adp-profile .adp-info {
    display: none;
  }

  .adp-right-column-section .adpr-header button {
    display: inline-block;
    background: transparent;
    cursor: pointer;
    color: var(--adp-color-dark);
    position: absolute;
    left: 1rem;
  }

  .adp-right-column-section .adpr-header button span {
    font-size: 2rem;
  }


}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --afdp-bg:              #f6f7fb;
  --afdp-panel:           #f6f6f9;
  --afdp-text:            #0f172a;
  --afdp-muted:           #6b7280;
  --afdp-border:          #d9dde6;
  --afdp-primary:         #2563eb;
  --afdp-primary-hover:   #1d4ed8;
  --afdp-success:         #16a34a;
  --afdp-danger:          #dc2626;
  --afdp-radius:          12px;
  --afdp-shadow:          0 10px 24px rgba(0,0,0,.06);
  --afdp-control-h:       40px;
  --afdp-font:            "Montserrat", 
                          system-ui, 
                          -apple-system, 
                          Segoe UI, Roboto, 
                          Arial, sans-serif;
  
  font-family: var(--afdp-font);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: var(--afdp-bg);
  user-select: none;
  overflow-x: hidden;
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.afdp-main {
  grid-column: 2 / -1;
}

/* Layout */
.afdp-main { grid-column: 2 / -1; }
.afdp-card {
  background: var(--afdp-panel);
  border: 1px solid var(--afdp-border);
  border-radius: var(--afdp-radius);
  box-shadow: var(--afdp-shadow);
  padding: 1rem 1.25rem;
}
.afdp-card__header { margin-bottom: .75rem; }
.afdp-h1 { font-size: 1.5rem; margin: 0 0 .25rem; color: var(--afdp-text); }
.afdp-muted { color: var(--afdp-muted); }

.afdp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-bottom: 1rem;
}
@media (max-width: 900px) { .afdp-grid-2 { grid-template-columns: 1fr; } }

/* Form */
/* .afdp-form-field {} */
.afdp-label { display:block; font-weight: 600; margin-bottom: .35rem; }
.afdp-input, .afdp-textarea, .afdp-select {
  width: 100%;
  height: var(--afdp-control-h);
  line-height: calc(var(--afdp-control-h) - 2px);
  border: 1px solid var(--afdp-border);
  border-radius: 10px;
  padding: 0 .75rem;
  font: 14px var(--afdp-font);
  color: var(--afdp-text);
  background: #fff;
}
.afdp-textarea { height: auto; padding: .6rem .75rem; line-height: 1.4; resize: vertical; min-height: 140px; }
.afdp-input:focus, .afdp-textarea:focus {
  outline: 2px solid transparent;
  border-color: var(--afdp-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.25);
}

/* Buttons */
.afdp-actions { display:flex; justify-content: space-between; align-items:center; margin-bottom: .75rem; }
.afdp-actions__right { justify-content: flex-end; }

.afdp-btn {
  display:inline-flex; align-items:center; justify-content:center;
  height: var(--afdp-control-h);
  padding: 0 1rem;
  border-radius: 10px;
  border: 1px solid var(--afdp-border);
  background: #f8fafc;
  font-weight: 600; text-decoration: none; cursor: pointer;
}
.afdp-btn:hover { background: #eef2f7; }
.afdp-btn__primary {
  background: var(--afdp-primary); border-color: var(--afdp-primary); color: #fff;
}
.afdp-btn__primary:hover { background: var(--afdp-primary-hover); border-color: var(--afdp-primary-hover); }
.afdp-btn__wide { min-width: 180px; }

/* overrides */

.afdp-editor-wrap:hover,
.afdp-textarea:hover, 
.afdp-input:hover {
  outline: 2px solid transparent;
  border-color: var(--afdp-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .2);
}

.afdp-editor-wrap iframe {
  width: 100%;
  border: 1px solid var(--afdp-border);
  border-radius: 10px;
  min-height: 140px;
}

.afdp-btn__slate {
  background: #64748b;
  border-color: #64748b;
  color: #fff !important;
}

.afdp-btn__slate:hover {
  background: #475569;
  color: #475569;
  color: #fff;
}


/* show form */

.afdp-section {
  margin: 1rem 0;
}

.afdp-section h2 {
  font-size: 1.1rem;
  margin: 0 0 .35rem;
  color: var(--afdp-text);
}

.afdp-rich p {
  margin: 0.4rem 0;
}

.afdp-rich span {
  word-spacing: normal;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --afdsp-bg:              #f6f7fb;
  --afdsp-panel:           #f6f6f9;
  --afdsp-text:            #0f172a;
  --afdsp-muted:           #6b7280;
  --afdsp-border:          #d9dde6;
  --afdsp-primary:         #2563eb;
  --afdsp-primary-hover:   #1d4ed8;
  --afdsp-success:         #16a34a;
  --afdsp-danger:          #dc2626;
  --afdsp-radius:          12px;
  --afdsp-shadow:          0 10px 24px rgba(0,0,0,.06);
  --afdsp-control-h:       40px;

  --afdsp-font:            "Montserrat", 
                          system-ui, 
                          -apple-system, 
                          Segoe UI, Roboto, 
                          Arial, sans-serif;
  
  font-family: var(--afdsp-font);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: #f6f7fb;
  user-select: none;
  overflow-x: hidden;
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.afdsp-main {
  grid-column: 2 / -1;
}

.afdsp-header {
  margin-top: 1rem;
}

.afdsp-card {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  padding: 1rem 1.25rem;
  margin-bottom: 16px;
}

.afdsp-card__header {
  margin-bottom: 12px;
}

.afdsp-h1 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 4px;
  color: var(--afdsp-text);
}

.afdsp-h2 {
  font-size: 1.125rem;
  margin: 0 0 8px;
  color: var(--afdsp-text);
}

.afdsp-muted {
  color: var(--afdsp-muted);
  font-size: 0.95rem;
}

.afdsp-card .afdsp-section:not(:first-of-type) {
  border-top: 1px solid #eef1f6;
  margin-top: 16px;
  padding-top: 16px;
}

.afdsp-rich {
  color: var(--afdsp-text);
  line-height: 1.55;
  word-wrap: break-word;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* block doesn't change anything */
.afdsp-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.afdsp-actions__right {
  justify-content: center;
}

.afdsp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid #d9dde6;
  background: #f8fafc;
  color: var(--afdsp-text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.afdsp-btn:hover {
  background: #eef2f7;
}

.afdsp-btn__primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.afdsp-btn__primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --afp-bg:                    #f6f7fb;
  --afp-panel:                 #fff;
  --afp-border:                #e5e7eb;
  --afp-muted:                 #6b7280;
  --afp-text:                  #111827;
  --afp-primary:               #1d4ed8;
  --afp-primary-hover:         #1e434a;
  --afp-success:               #16a34a;
  --afp-danger:                #dc2626;
  --afp-badge-bg:              #dbeafe;
  --afp-badge-text:            #1e40af;
  --afp-color-background:      #f6f6f9;
  --afp-magenta:               #a3167f;
  --afp-radius:                10px;
  --afp-shadow:                0 6px 18px rgba(0, 0, 0, .06);
  --afp-font:                  "Montserrat", 
                               system-ui, 
                               -apple-system, 
                               Segoe UI, Roboto, 
                               Arial, sans-serif;
  
  font-family: var(--afp-font);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: var(--afp-bg);
  user-select: none;
  overflow-x: hidden;
}

.adp-shell section {
  color: var(--adp-color-dark);
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.afp-main {
  grid-column: 2 / -1;
}

.afp-ftags {
  color: var(--afp-text);
}

.afp-ftags__header {
  margin: 1.25rem 0 1rem;
}

.afp-ftags__header h1 {
  margin: 0;
  font-size: 1.6rem;
}

.afp-ftags__header p {
  color: var(--afp-muted);
  margin: 0.25rem 0 0;
}

.afp-ftags__panel {
  background: var(--afp-panel);
  border: 1px solid var(--afp-border);
  border-radius: var(--afp-radius);
  box-shadow: var(--afp-shadow);
  padding: 1rem;
  margin-bottom: 1rem;
}

.afp-ftags__panel h2 {
  margin: 0 0 .75rem;
  font-size: 1.25rem;
}

.afp-ftags__formgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.afp-form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.afp-input {
  width: 100%;
  border: 1px solid var(--afp-border);
  border-radius: 8px;
  padding: 0.5rem .65rem;
  font-size: .95rem;
}

.afp-checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.afp-form-actions {
  display: flex;
  align-items: end;
}

.afp-btn {
  display: inline-block;
  border: 1px solid var(--afp-border);
  background: #f9fafb;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: var(--afp-text);
  cursor: pointer;
}

.afp-btn:hover { background: #f3f4f6; }
.afp-btn-ghost {
  background: transparent;
}

.afp-btn-primary {
  background: var(--afp-primary);
  border-color: var(--afp-primary);
  color: #fff;
}

.afp-btn-primary:hover { 
  background: var(--afp-primary-hover); 
}

.afp-btn-success {
  background: var(--afp-success);
  border-color: var(--afp-success);
  color: #fff !important;
}

.afp-btn-success:hover {
  background: #12813b;
  border-color: #12813b;
  color: #fff !important;
}

.afp-btn-danger {
  background: var(--afp-danger);
  border-color: var(--afp-danger);
  color: #fff !important;
}

.afp-btn-danger:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff !important;
}

.afp-btn-xs {
  padding: 0.25rem 0.5rem;
  font-size: .85rem;
}

.afp-table-wrap { overflow-x: auto; }
.afp-table {
  width: 100%;
  border-collapse: collapse;
}

.afp-table thead th {
  text-align: left;
  border-bottom: 1px solid var(--afp-border);
  padding: 0.6rem 0.75rem;
  font-weight: 700;
  background: #f9fafb;
}

.afp-table tbody td {
  border-bottom: 1px solid var(--afp-border);
  padding: 0.6rem 0.75rem;
}

.afp-badge {
  background: var(--afp-badge-bg);
  color: var(--afp-badge-text);
  font-size: .8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}

.afp-muted { color: var(--afp-muted); }
.afp-text-red { color: #dc2626; }
.afp-text-black { color: #111827; }

.afp-empty-row .afp-empty-cell {
  text-align: center;
  color: var(--afp-muted);
  padding: 1rem;
}

/* pagination */


/* overrides */

.afp-ftags__panel {
  background: #fff;
}

.afp-ftags__panel {
  border-color: #d9dde6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.afp-table thead th {
  background: #f2f5fb;
}

.afp-table tbody tr:nth-child(even) td {
  background: #fafbff;
}

.afp-input {
  background: #fff;
  border-color: #cfd6e4;
}

.afp-input:focus {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .25);
  border-color: var(--afp-primary);
}

.afp-select {
  padding-right: 2.25rem;
  
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: 
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg,#6b7280 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position: 
    calc(100% - 1.1rem) calc(50% - 0.25rem),
    calc(100% - 0.75rem) calc(50% - 0.25rem),
    calc(100% - 2.2rem) 0.35rem;
  background-size: 6px 6px, 6px 6px, 1px 65%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.afp-checkbox-inline input[type="checkbox"] {
  appearance: checkbox;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  width: 20px;
  height: 20px;
  border: 1px solid #cfd6e4;
  border-radius: 3px;
  background: #fff;
  margin: 0;
  vertical-align: middle;
  margin-bottom: 3px;
}

.afp-checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

.afp-btn-wide { min-width: 180px; }
.afp-btn-primary {
  background: var(--afp-primary);
  border-color: var(--afp-primary);
  color: #fff;
}

.afp-btn-primary:hover { background: var(--afp-primary-hover);}

.adp-shell .adp-container {
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.afp-main { grid-column: 2 / -1; }


/* 2nd level overrides */

.adp-shell {
  --afp-control-h:        40px;
  --afp-control-radius:   8px;
  --afp-primary:          #2563eb;
  --afp-primary-hover:    #1d4ed8;
}

.afp-imout {
  height: var(--afp-control-h);
  line-height: calc(var(--afp-control-h) - 2px);
  border-radius: var(--afp-control-radius);
}


.afp-checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: var(--afp-control-h);
}

.afp-btn {
  margin-bottom: 8px;
}

.afp-btn-primary {
  height: var(--afp-control-h);
  line-height: calc(var(--afp-control-h) - 2px);
  padding: 0 1rem;
  background: var(--afp-primary);
  border-color: var(--afp-primary);
  color: #fff;
}

.afp-btn-primary:hover {
  background: var(--afp-primary-hover);
  border-color: var(--afp-primary-hover);
}

.afp-btn-wide {
  min-width: 180px;
}

/* filter bar */

.afp-filter-form {
  width: 100%;
}

.afp-filter-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: .5rem;
  align-items: center;
}

.afp-filter-input {
  height: var(--afp-control-h);
  border-color: #cfd6e4;
  background: #fff;
  margin-bottom: 10px;
}
.afp-btn {
  font-weight: 600;
  border-radius: var(--afp-control-radius);
  padding: 0 0.9rem;
  height: var(--afp-control-h);
  line-height: calc(var(--afp-control-h) - 2px);
}

.afp-btn-primary {
  background: var(--afp-primary);
  border-color: var(--afp-primary);
  color: #fff !important;
}

.afp-btn-primary:hover {
  background: var(--afp-primary-hover);
  border-color: var(--afp-primary-hover);
}

.afp-btn-secondary {
  background: #475569;
  border-color: #475569;
  color: #fff !important;
}

.afp-btn-secondary:hover {
  background: #334155;
  border-color: #334155;
}

.afp-btn-reset {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff !important;
}

.afp-btn-reset:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}

/* pagination */

.afp-pagination-wrap {
  padding-top: 0.5rem;
}

.afp-pagination-meta {
  color: var(--afp-muted);
  margin-bottom: 0.25rem;
}

.afp-pagination {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.afp-page-link {
  border: 1px solid var(--afp-border);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--afp-text);
  font-weight: 600;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.afp-page-link:hover:not(.afp-disabled):not(.afp-active) {
  border-color: var(--afp-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}

.afp-page-link.afp-active {
  background: var(--afp-primary);
  border-color: var(--afp-primary);
  color: #fff;
}

.afp-page-link.afp-disabled {
  pointer-events: none;
  opacity: .5;
}

.afp-pagination__inline { 
  margin-left: auto;
}

.afp-pagination__center { 
  justify-content: center;
  /* margin-top: 0.8rem; */
}

.afp-pagination__top { 
  margin-bottom: 11px;
}

.afp-pagination__top {
  margin-top: 0.2rem;
}

.afp-pagination__bottom {
  margin-top: 0.5rem;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --app-bg:                    #f6f7fb;
  --app-card:                  #fff;
  --app-text:                  #0f172a;
  --app-muted:                 #64748b;
  --app-border:                #e2e8f0;
  --app-primary:               #4f46e5;
  --app-primary-hover:         #4338ca;
  --app-success:               #16a34a;
  --app-success-hover:         #12813b;
  --app-danger:                #dc2626;
  --app-danger-hover:          #b91c1c;
  --app-slate:                 #475569;
  --app-slate-hover:           #334155;
  --app-ghost:                 #f1f5f9;
  --app-ghost-hover:           #e2e8f0;
  --app-magenta:               #a3167f;

  --app-active-bg:             #4f46e5;
  --app-active-text:           #fff;
  --app-hover-bg:              #e5e7eb;
  --app-hover-text:            #111827;  

  --app-radius:                14px;
  --app-shadow:                0 10px 24px rgba(2, 6, 23, 0.06);
  --app-control-h:             40px;

  --app-font:                  "Montserrat", 
                               system-ui, 
                               -apple-system, 
                               Segoe UI, Roboto, 
                               Arial, sans-serif;
  
  font-family: var(--app-font);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: var(--app-bg);
  user-select: none;
  overflow-x: hidden;
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.app-main {
  grid-column: 2 / -1;
  padding: 1.25rem;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.app-title {
  margin: 0;
  font: 700 1.5rem/1.25 var(--app-font);
  color: var(--app-text);
}

.app-subtitle {
  margin-top: 0.25rem;
  color: var(--app-muted);
  font: 500 .95rem/1.3 var(--app-font);
}

.app-actions {
  display: flex;
  gap: 0.5rem;
}

.app-card {
  background: var(--app-card);
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  box-shadow: var(--app-shadow);
  overflow: hidden;
}

.app-tablewrap {
  overflow: auto;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font: 14px var(--app-font);
}

.app-table thead th {
  background: #f8fafc;
  color: #334155;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--app-border);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
}

.app-table tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--app-border);
  color: var(--app-text);
  vertical-align: middle;
}

.app-col-actions {
  width: 320px;
}

.app-mono {
  font-family: ui-monosapce, 
               SFMono-Regular, 
               Menlo, 
               Monaco, 
               Consolas, 
               "Liberation Mono", 
               "Courier New", 
               monospace;

  font-size: 12px;
  color: #475569;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--app-control-h);
  padding: 0 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--app-border);
  background: #f8fafc;
  color: var(--app-text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.app-btn:hover {
  background: #eef2f7;
}

.app-btn__primary {
  background: var(--app-primary);
  border-color: var(--app-primary);
  color: #fff !important;
}

.app-btn__primary:hover {
  background: var(--app-primary-hover);
  border-color: var(--app-primary-hover);
}

.app-btn__success {
  background: var(--app-success);
  border-color: var(--app-success);
  color: #fff !important;
}

.app-btn__success:hover {
  background: var(--app-success-hover);
  border-color: var(--app-success-hover);
}

.app-btn__danger {
  background: var(--app-danger);
  border-color: var(--app-danger);
  color: #fff !important;
}

.app-btn__danger:hover {
  background: var(--app-danger-hover);
  border-color: var(--app-danger-hover);
}

.app-btn__slate {
  background: var(--app-slate);
  border-color: var(--app-slate);
  color: #fff !important;
}

.app-btn__slate:hover {
  background: var(--app-slate-hover);
  border-color: var(--app-slate-hover);
}

.app-btn__ghost {
  background: #fff;
}

.app-actions-inline {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4rem;
}

.app-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--app-muted);
}

.app-empty__hint {
  margin-top: 0.25rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--app-border);
  background: #f1f5f9;
  color: #334155;
}

.app-badge__blue {
  background:   #e0e7ff;
  color:        #3730a3;
  border-color: #c7d2fe;
}

.app-badge__purple {
  background:   #ede9fe;
  color:        #6d28d9;
  border-color: #ddd6fe;
}

.app-badge__green {
  background:   #dcfce7;
  color:        #166534;
  border-color: #bbf7d0;
}

.app-badge__indigo {
  background:   #e0e7ff;
  color:        #3730a3;
  border-color: #c7d2fe;
}

.app-badge__teal {
  background:   #ccfbf1;
  color:        #115e59;
  border-color: #99f6e4;
}

.app-badge__muted {
  background:   #f1f5f9;
  color:        #334155;
  border-color: #e2e8f0;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --apfp-bg:                    #f6f7fb;
  --apfp-card:                  #fff;
  --apfp-text:                  #0f172a;
  --apfp-muted:                 #64748b;
  --apfp-border:                #e2e8f0;
  --apfp-primary:               #4f46e5;
  --apfp-primary-hover:         #4338ca;
  --apfp-success:               #16a34a;
  --apfp-success-hover:         #12813b;
  --apfp-danger:                #dc2626;
  --apfp-danger-hover:          #b91c1c;
  --apfp-slate:                 #475569;
  --apfp-slate-hover:           #334155;
  --apfp-ghost:                 #f1f5f9;
  --apfp-ghost-hover:           #e2e8f0;
  --apfp-magenta:               #a3167f;

  --apfp-active-bg:             #4f46e5;
  --apfp-active-text:           #fff;
  --apfp-hover-bg:              #e5e7eb;
  --apfp-hover-text:            #111827;  

  --apfp-radius:                14px;
  --apfp-shadow:                0 10px 24px rgba(2, 6, 23, 0.06);
  --apfp-input-h:             40px;

  --apfp-font:                  "Montserrat", 
                               system-ui, 
                               -apple-system, 
                               Segoe UI, Roboto, 
                               Arial, sans-serif;
  
  font-family: var(--apfp-font);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: var(--apfp-bg);
  user-select: none;
  overflow-x: hidden;
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.apfp-main {
  grid-column: 2 / -1;
  padding: 1.25rem;
}

.apfp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.apfp-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.apfp-card {
  background: var(--apfp-card);
  border: 1px solid var(--apfp-border);
  border-radius: var(--apfp-radius);
  box-shadow: var(--apfp-shadow);
  overflow: hidden;
}

.apfp-card__body {
  padding: 1rem 1.25rem;
}

.apfp-card__foot {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--apfp-border);
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
}

.apfp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.apfp-field__full {
  grid-column: 1 / -1;
}

.apfp-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.apfp-input {
  width: 100%;
  height: var(--apfp-input-h);
  border: 1px solid var(--apfp-border);
  border-radius: 10px;
  padding: 0 .75rem;
  background: #fff;
}

.apfp-input:hover {
  border: 2px solid var(--apfp-primary);
  border-color: var(--apfp-primary);
}

.apfp-input:focus {
  outline: 2px solid transparent;
  border-color: var(--apfp-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .2);
}

.apfp-input[type="textarea"], textarea.apfp-input {
  height: auto;
  padding: 0.6rem 0.75rem;
}

.apfp-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.apfp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--apfp-input-h);
  padding: 0 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--apfp-border);
  background: #f8fafc;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  color: #0f172a;
}

.apfp-btn:hover {
  background: #eef2f7;
}

.apfp-btn__primary {
  background: var(--apfp-primary);
  border-color: var(--apfp-primary);
  color: #fff !important;
}

.apfp-btn__primary:hover {
  background: var(--apfp-primary-hover);
  border-color: var(--apfp-primary-hover);
}

.apfp-error {
  color: #b91c1c;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.asb-shell {
  --asb-color-primary:         #7380ec;
  --asb-color-danger:          #ff7782;
  --asb-color-success:         #41fbb6;
  --asb-color-warning:         #ffbb55;
  --asb-color-white:           #fff;
  --asb-color-info-muted:      #7d8da1;
  --asb-color-info-light:      #dce1eb;
  --asb-color-dark:            #363949;
  --asb-color-light:           rgba(132, 139, 200, 0.18);
  --asb-color-primary-variant: #111e88;
  --asb-color-dark-variant:    #677483;
  --asb-color-background:      #f6f6f9;

  --asb-card-border-radius:    2rem;
  --asb-border-radius-1:       0.4rem;
  --asb-border-radius-2:       0.8rem;
  --asb-border-radius-3:       1.2rem;

  --asb-card-padding:          1.8rem;
  --asb-padding-1:             1.2rem;

  --asb-box-shadow:            0 2rem 3rem var(--asb-color-light);

  --asb-font:                  "Montserrat", 
                               system-ui, 
                               -apple-system, 
                               Segoe UI, Roboto, 
                               Arial, sans-serif;
  
  font-family: var(--asb-font);
}

.dark-theme-variable {
  --asb-color-background:      #181a1e;
  --asb-color-white:           #202528;
  --asb-color-dark:            #edeffd;
  --asb-color-dark-variant:    #a3bdcc;
  --asb-color-light:           rgba(0, 0, 0, 0.4);

  --asb-box-shadow:            0 2rem 3rem var(--asb-color-light);
}

.asb-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;   /* merged from html */
  width: auto;       /* 100vw */
  height: auto;     /* 100vh */
  /* font-family: var(--asb-font); */
  /* background: var(--asb-color-background); */
  user-select: none;
  overflow-x: hidden;
}

/* .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  background: red;
} */

.asb-shell a { color: var(--asb-color-dark); }
.asb-shell img { display: block; width: 100%; }
.asb-shell h1 { font-weight: 800; font-size: 1.8rem; }
.asb-shell h2 { font-size: 1.4rem; }
.asb-shell h3 { font-size: 0.87rem; }
.asb-shell h4 { font-size: 0.8rem; }
.asb-shell h5 { font-size: 0.77rem; }
.asb-shell small { font-size: 0.75rem; }

.asb-shell .profile-photo {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  overflow: hidden;
}

.asb-shell .text-muted { color: var(--asb-color-info-muted); }
.asb-shell p { color: var(--asb-color-dark-variant); }
.asb-shell b { color: var(--asb-color-dark); }
.asb-shell .primary { color: var(--asb-color-primary); }
.asb-shell .danger { color: var(--asb-color-danger); }
.asb-shell .success { color: var(--asb-color-success); }
.asb-shell .warning { color: var(--asb-color-warning); }

.asb-shell {
  height: 100vh;
}

.asb-shell .asb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
}

.asb-shell .asb-logo {
  display: flex;
  gap: 0.8rem;
}

.asb-shell .asb-logo img {
  width: 2rem; height: 2rem;
}

.asb-shell .close {
  display: none;
}

.asb-shell .asb-sidebar {
  display: flex;
  flex-direction: column;
  height: 86vh;
  position: relative;
  top: 3rem;
}

.asb-shell h3 {
  font-weight: 500;
}

.asb-shell .asb-sidebar a {
  display: flex;
  color: var(--asb-color-info-muted);
  margin-left: 2rem;
  gap: 1rem;
  align-items: center;
  position: relative;
  height: 3.7rem;
  transition: all 300ms ease;
}

.asb-shell .asb-sidebar a span {
  font-size: 1.6rem;
  transition: all 300ms ease;
}

.asb-shell .asb-sidebar a:last-child {
  position: absolute;
  bottom: 2rem;
  width: 100%;
}

.asb-shell .asb-sidebar a.active {
  background: var(--asb-color-light);
  color: var(--asb-color-primary);
  margin-left: 0;
}

.asb-shell .asb-sidebar a.active:before {
  content: "";
  width: 6px;
  height: 100%;
  background: var(--asb-color-primary);
}

.asb-shell .asb-sidebar a.active span {
  color: var(--asb-color-primary);
  margin-left: calc(1rem - 3px);
}

.asb-shell .asb-sidebar a:hover {
  color: var(--asb-color-primary);
}

.asb-shell .asb-sidebar a:hover span {
  margin-left: 1rem;
}

.asb-shell .asb-sidebar .message-count {
  background: var(--asb-color-danger);
  color: var(--asb-color-white);
  padding: 2px 10px;
  font-size: 11px;
  border-radius: var(--asb-border-radius-1);
}

/* ======== Breakpoints for Tablets and small Laptops ======== */

@media screen and (max-width: 1200px) {
  .asb-shell .asb-logo h2 {
    display: none;
  }

  .asb-shell .asb-sidebar h3 {
    display: none;
  }

  .asb-shell .asb-sidebar a {
    width: 5.6rem;
  }

  .asb-shell .asb-sidebar a:last-child {
    position: relative;
    margin-top: 1.8rem;
  }
}


/* ======== Breakpoints for small Tablets and Mobile ======== */

@media screen and (max-width: 768px) {
  .asb-shell {
    position: fixed;
    left: -100%;
    background: var(--asb-color-white);
    width: 18rem;
    z-index: 3;
    box-shadow: 1rem 3rem 4rem var(--asb-color-light);
    height: 100vh;
    padding-right: var(--asb-card-padding);
    display: none;
    animation: showMenu 400ms ease forwards   ;
  }

  @keyframes showMenu {
    to {
      left: 0;
    }
  }

  .asb-shell .asb-logo {
    margin-left: 1rem;
  }

  .asb-shell .asb-logo h2 {
    display: inline;
  }

  .asb-shell .asb-sidebar h3 {
    display: inline;
  }

  .asb-shell .asb-sidebar a {
    width: 100%;
    height: 3.4rem;
  }

  .asb-shell .asb-sidebar a:last-child {
    position: absolute;
    bottom: 5rem;
  }

  .asb-shell .close {
    display: inline-block;
    cursor: pointer;
  }

}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --ascp-bg:                    #f6f7fb;
  --ascp-card:                  #fff;
  --ascp-text:                  #0f172a;
  --ascp-muted:                 #64748b;
  --ascp-border:                #e2e8f0;
  --ascp-primary:               #4f46e5;
  --ascp-primary-hover:         #4338ca;
  --ascp-success:               #16a34a;
  --ascp-success-hover:         #12813b;
  --ascp-danger:                #dc2626;
  --ascp-danger-hover:          #b91c1c;
  --ascp-slate:                 #475569;
  --ascp-slate-hover:           #334155;
  --ascp-ghost:                 #f1f5f9;
  --ascp-ghost-hover:           #e2e8f0;
  --ascp-magenta:               #a3167f;

  --ascp-active-bg:             #4f46e5;
  --ascp-active-text:           #fff;
  --ascp-hover-bg:              #e5e7eb;
  --ascp-hover-text:            #111827;  

  --ascp-radius:                14px;
  --ascp-shadow:                0 10px 24px rgba(2, 6, 23, 0.06);
  --ascp-control-h:             42px;

  --ascp-font:                 "Montserrat", 
                               system-ui, 
                               -apple-system, 
                               Segoe UI, 
                               Roboto, 
                               Arial, 
                               sans-serif;
  
  font-family: var(--ascp-font);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: var(--ascp-bg);
  user-select: none;
  overflow-x: hidden;
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.ascp-main {
  grid-column: 2 / -1;
  padding: 1.25rem;
}

.ascp-header {
  margin-bottom: 0.75rem;
}

.ascp-title {
  font: 700 1.4rem/1.25 var(--ascp-font);
  margin: 0;
}

.ascp-subtitle {
  color: var(--ascp-muted);
  margin-top: 0.25rem;
}

.ascp-card {
  background: #fff;
  border: 1px solid var(--ascp-border);
  border-radius: var(--ascp-radius);
  box-shadow: var(--ascp-shadow);
  overflow: hidden;
}

.ascp-card__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ascp-border);
}

.ascp-card__title {
  font-weight: 700;
  color: var(--ascp-text);
}

.ascp-card__muted {
  color: var(--ascp-muted);
  font-size: 0.95rem;
}

.ascp-card__actions {
  padding: 1rem;
  display: inline-flex;
  gap: 0.5rem;
}

.ascp-card__body {
  padding: 1rem 1.25rem;
}

.ascp-fieldset {
  margin-bottom: 1rem;
}

.ascp-legend {
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--ascp-text);
}

.ascp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem 0.8rem;
}

.ascp-form-field {
  grid-column: span 6;
}
@media (max-width: 900px) {
  .ascp-form-field {
    grid-column: span 12;
  }
}

.ascp-label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.ascp-input {
  width: 100%;
  height: var(--ascp-control-h);
  border: 1px solid var(--ascp-border);
  border-radius: 10px;
  padding: 0 0.75rem;
  color: var(--ascp-text);
  background: #fff;
}

.ascp-input:focus {
  outline: 2px solid transparent;
  border-color: var(--ascp-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .2);
}

.ascp-input:hover {
  outline: 2px solid transparent;
  border-color: var(--ascp-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .2);
}

.ascp-hint {
  margin-top: 0.4rem;
  color: var(--ascp-muted);
  font-size: .875rem;
}

.ascp-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-start;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ascp-border);
}

.ascp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--ascp-control-h);
  padding: 0 .9rem;
  border-radius: 10px;
  border: 1px solid var(--ascp-border);
  background: #f8fafc;
  color: var(--ascp-text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.ascp-btn:hover {
  background: #eef2f7;
}

.ascp-btn__primary {
  background: var(--ascp-primary);
  border-color: var(--ascp-primary);
  color: #fff !important;
}

.ascp-btn__primary:hover {
  background: var(--ascp-primary-hover);
  border-color: var(--ascp-primary-hover);
}

.ascp-btn__ghost {
  background: #fff;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --asp-bg:                    #f6f7fb;
  --asp-card:                  #fff;
  --asp-border:                #e2e8f0;
  --asp-text:                  #0f172a;
  --asp-muted:                 #64748b;
  --asp-primary:               #4f46e5; /* 1d4ed8 */
  --asp-primary-hover:         #4338ca; /* 1e434a */
  --asp-success:               #16a34a;
  --asp-success-hover:         #12813b;
  --asp-danger:                #dc2626;
  --asp-danger-hover:          #b91c1c;
  --asp-slate:                 #475569;
  --asp-slate-hover:           #334155;
  --asp-ghost:                 #f1f5f9;
  --asp-ghost-hover:           #e2e8f0;
  --asp-magenta:               #a3167f;

  --asp-active-bg:             #4f46e5;
  --asp-active-text:           #fff;
  --asp-hover-bg:              #e5e7eb;
  --asp-hover-text:            #111827;  

  --asp-radius:                14px;
  --asp-shadow:                0 10px 24px rgba(2, 6, 23, 0.06);
  --asp-control-h:             40px;

  --asp-font:                  "Montserrat", 
                               system-ui, 
                               -apple-system, 
                               Segoe UI, Roboto, 
                               Arial, sans-serif;
  
  font-family: var(--asp-font);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: var(--asp-bg);
  user-select: none;
  overflow-x: hidden;
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.asp-main {
  grid-column: 2 / -1;
  padding: 1.25rem;
}

.asp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}

.asp-title {
  font: 800 1.5rem/1.25 inherit;
  color: var(--asp-text);
}

.asp-subtitle {
  margin-top: .25rem;
  color: var(--asp-muted);
  font: 500 .95rem/1.3 inherit;
}

.asp-card {
  background: var(--asp-card);
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius);
  box-shadow: var(--asp-shadow);
  overflow: hidden;
}

.asp-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--asp-border);
  background: #f8fafc;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.asp-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.asp-card__title {
  font-weight: 700;
  color: var(--asp-text);
}

.asp-card__muted {
  color: var(--asp-muted);
  font-size: .875rem;
  margin-top: .25rem;
}

.asp-tablewrap {
  overflow: auto;
}

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

.asp-table thead th {
  background: #f8fafc;
  color: #334155;
  text-align: left;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--asp-border);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
}

.asp-table tbody td { 
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--asp-border);
  color: var(--asp-text);
  vertical-align: middle;
}

.asp-col-actions { 
  width: 220px;
} /* not used yet */

.asp-btn { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--asp-control-h);
  padding: 0 .9rem;
  border-radius: 10px;
  border: 1px solid var(--asp-border);
  background: #f8fafc;
  color: var(--asp-text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.asp-btn:hover { 
  background: #eef2f7;
}

.asp-btn__primary { 
  background: var(--asp-primary);
  border-color: var(--asp-primary);
  color: #fff !important;
}

.asp-btn__primary:hover { 
  background: var(--asp-primary-hover);
  border-color: var(--asp-primary-hover);
}

.asp-empty { 
  text-align: center;
  color: var(--asp-muted);
  padding: 2rem;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.adp-shell {
  --aup-bg:                    #f6f7fb;
  --aup-card:                  #fff;
  --aup-text:                  #0f172a;
  --aup-muted:                 #64748b;
  --aup-border:                #e2e8f0;
  --aup-primary:               #4f46e5; /* 1d4ed8 */
  --aup-primary-hover:         #4338ca; /* 1e434a */
  --aup-success:               #16a34a;
  --aup-success-hover:         #12813b;
  --aup-danger:                #dc2626;
  --aup-danger-hover:          #b91c1c;
  --aup-slate:                 #475569;
  --aup-slate-hover:           #334155;
  --aup-magenta:               #a3167f;

  --aup-active-bg:             #4f46e5;
  --aup-active-text:           #fff;
  --aup-hover-bg:              #e5e7eb;
  --aup-hover-text:            #111827;  

  --aup-radius:                14px;
  --aup-shadow:                0 10px 24px rgba(2, 6, 23, 0.06);
  --aup-control-h:             40px;

  --aup-font:                  "Montserrat", 
                               system-ui, 
                               -apple-system, 
                               Segoe UI, Roboto, 
                               Arial, sans-serif;
  
  font-family: var(--aup-font);
}

.adp-shell * {
  margin: 0;
  padding: 0;
  outline: 0;
  appearance: none;
  border: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.adp-shell {
  font-size: 14px;
  width: auto;
  height: auto;
  background: var(--aup-bg);
  user-select: none;
  overflow-x: hidden;
}

.adp-shell .adp-container {
  display: grid;
  width: 96%;
  margin: 0 auto;
  gap: 1.8rem;
  grid-template-columns: 14rem 1fr;
  align-items: start;
}

.aup-main {
  grid-column: 2 / -1;
  padding: 1.25rem;
}

.aup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.aup-title {
  margin: 0;
  font: 700 1.5rem/1.25 var(--aup-font);
}

.aup-subtitle {
  margin: 0.25rem 0 0;
  color: var(--aup-muted);
  font: 500 .95rem/1.3 var(--aup-font)
}

.aup-card {
  background: var(--aup-card);
  border: 1px solid var(--aup-border);
  border-radius: var(--aup-radius);
  box-shadow: var(--aup-shadow);
  overflow: hidden;
}

.aup-search {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--aup-border);
}

.aup-search__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.aup-search__inputwrap {
  position: relative;
  flex: 1 1 320px;
}

.aup-input {
  width: 100%;
  height: var(--aup-control-h);
  border: 1px solid var(--aup-border);
  border-radius: 10px;
  padding: 0 .75rem;
  font: 14px var(--aup-font);
  color: var(--aup-text);
  background: #fff;
}

.aup-input:focus {
  outline: 2px solid transparent;
  border-color: var(--aup-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .2);
}

.aup-search__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.aup-clear {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  padding: 0.25rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
  color: var(--aup-muted);
  cursor: pointer;
}

.aup-clear:hover {
  color: var(--aup-text);
}

.aup-search__inputwrap.has-value .apu-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.aup-help {
  margin-top: 0.4rem;
  color: var(--aup-muted);
  font: 12px var(--aup-font);
}

.aup-tablewrap {
  overflow: auto;
}

.aup-table {
  width: 100%;
  border-collapse: collapse;
  font: 14px var(--aup-font);
}

.aup-table thead th {
  background: #f8fafc;
  color: #334155;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--aup-border);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
}

.aup-table tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--aup-border);
  color: var(--aup-text);
  vertical-align: middle;
}

.aup-col-actions { width: 360px; }

.aup-empty {
  text-align: center;
  color: var(--aup-muted);
}

.aup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--aup-control-h);
  padding: 0 .9rem;
  border-radius: 10px;
  border: 1px solid var(--aup-border);
  background: #f8fafc;
  color: var(--aup-text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.aup-btn:hover {
  background: #eef2f7;
}

.aup-btn__primary {
  background: var(--aup-primary);
  border-color: var(--aup-primary);
  color: #fff !important;
}

.aup-btn__primary:hover {
  background: var(--aup-primary-hover);
  border-color: var(--aup-primary-hover);
}

.aup-btn__danger {
  background: var(--aup-danger);
  border-color: var(--aup-danger);
  color: #fff !important;
}

.aup-btn__danger:hover {
  background: var(--aup-danger-hover);
  border-color: var(--aup-danger-hover);
}

.aup-btn__success {
  background: var(--aup-success);
  border-color: var(--aup-success);
  color: #fff !important;
}

.aup-btn__success:hover {
  background: var(--aup-success-hover);
  border-color: var(--aup-success-hover);
}

.aup-btn__slate {
  background: var(--aup-slate);
  border-color: var(--aup-slate);
  color: #fff !important;
}

.aup-btn__slate:hover {
  background: var(--aup-slate-hover);
  border-color: var(--aup-slate-hover);
}

.aup-btn__muted {
  background: #f1f5f9;
  color: #334155;
}

.aup-btn__ghost {
  background: #fff;
}

.aup-actions .aup-btn {
  margin-right: 0.4rem;
}

.aup-actions {
  display: flex;
  flex-wrap: nowrap;
  /* gap: 0.5rem; */
  align-items: center;
}

.aup-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--aup-border);
}

.aup-badge__ok {
  color: #065f46;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.aup-badge__muted {
  color: #334155;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.aup-badge__dev {
  color: #f9fafb;
  background: linear-gradient(145deg, #111827, #374151);
  border: 1px solid #92400e;
  font-weight: 600;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15),
              inset 0 -1px 2px rgba(0, 0, 0, 0.4);
}

.aup-badge__admin {
  color: #92400e;
  background: #fef3c7;
  border-color: #fcd34d;
  font-weight: 600;
}

.aup-badge__moderator {
  color: #374151;
  background: #f9fafb;
  border: 2px solid #c0c0c0;
  font-weight: 600;
  background: linear-gradient(145deg, #f0f0f0, #dcdcdc);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6),
              inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.aup-badge__banned {
  color: #991b1b;
  background: linear-gradient(145deg, #fee2e2, #dc2626);
  border: 1px solid #b91c1c;
  font-weight: 600;
  background: linear-gradient(145deg, #f0f0f0, #dcdcdc);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25),
              inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.aup-badge__customer {
  color: #065f46;
  background: linear-gradient(145deg, #d1fae5, #10b981);
  border: 1px solid #059669;
  font-weight: 600;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25),
              inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.aup-badge__user {
  color: #1e3a8a;
  background: linear-gradient(145deg, #dbeafb #3b82f6);
  border: 1px solid #2563eb;
  font-weight: 600;
}

.aup-pagination-wrapper {
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--aup-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--aup-muted);
}

.aup-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aup-page-link {
  display: inline-block;  
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  border-radius: 6px;
  /* border: 1px solid var(--aup-border); */
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  background-color: transparent;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.aup-page-link:hover {
  background-color: var(--aup-hover-bg, #f3f4f6);
  color: var(--aup-hover-text);
}

.aup-page-link.aup-diabled {
  pointer-events: none;
  opacity: .5;
}

.aup-page-link.aup-active {
  background-color: var(--aup-active-bg, #4f46e5);
  color: var(--aup-active-text, #fff);
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}
.app_support_container {
  max-width: auto;
  margin: 20px auto;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.app_support_container p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.app_support_container a {
  color: #007bff;
  text-decoration: none;
}

.app_support_container a:hover {
  text-decoration: underline;
}

.app_support_container div label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.app_support_container div input[type="text"],
.app_support_container div textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.app_support_container div input[type="text"]:focus,
.app_support_container div textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}

#verify-username {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

#verify-username:hover {
  background-color: #0056b3;
}

#verification-message {
  font-size: 14px;
  color: #555;
}

.app_support_container div .btn {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background-color: #28a745;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.app_support_container div .btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.app_support_container div .btn:hover:not(:disabled) {
  background-color: #218838;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.flash-stack {
  position: fixed;
  top: var(--header-offset-mobile);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: grid;
  gap: 10px;
  width: min(92vw, 720px);
  padding: 0 8px;
}

@media (min-width: 1118px) {
  .flash-stack {
    top: var(--header-offset-desktop);
  }
}

.flash {
  --flash-bg:         #ffffff;
  --flash-text:       #111418;
  --flash-border:     #e5e7eb;
  --flash-shadow:     0 12px 28px rgba(15, 23, 42, 0.18);

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;

  background: var(--flash-bg);
  color: var(--flash-text);
  border: 1px solid var(--flash-border);
  border-radius: 12px;
  box-shadow: var(--flash-shadow);
  padding: 12px 14px;

  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  opacity: 0;
  transform: translateY(-8px);
  animation: flash-in 220ms ease-out forwards;
}

.flash-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.flash-notice {
  --flash-accent:      #0f62fe;
  --flash-bg:          #ffffff;
  --flash-border:      #dbeafe;
  color:               #0b1220;
}

.flash-notice .flash-icon {
  color: var(--flash-accent);
}

.flash-alert {
  --flash-accent:      #e71d36;
  --flash-bg:          #fff5f6;
  --flash-border:      #fecaca;
  color:               #611018;
}

.flash-alert .flash-icon {
  font-size: .98rem;
  line-height: 1.45;
}

.flash-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #475569;
  font-size: 1.15rem;
  line-height: 1;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
}

.flash-close:hover {
  background: #f1f5f9;
}

@keyframes flash-in {
  to { 
    opacity: 1;
    transform: translateY(0);
   }
}

@keyframes flash-out {
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (max-height: 540px) {
  .flash-stack {
    top: 8px;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

:root {
  --sf-bg:          #0e1116;
  --sf-bg-alt:      #151a21;
  --sf-text:        #e8edf2;
  --sf-muted:       #98a2b3;
  --sf-accent:      #4cc9f0;
  --sf-border:      #232a34;

  --sf-radius:           16px;
  --sf-gap:              24px;
  --sf-padding-block:    28px;
  --sf-maxw:           1200px;

  --sf-link:        #d0e8ff;
  --sf-link-hover:  #ffffff;

  --sf-icon-size:         22px;
}

.site-footer, .site-footer * {
  box-sizing: border-box;
}

.site-footer {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--sf-bg);
  color: var(--sf-text);
  border-top: 1px solid var(--sf-border);
  width: 100%;
}

.site-footer a {
  color: var(--sf-link);
  text-decoration: none;
}

.site-footer a:hover, .site-footer a:focus {
  color: var(--sf-link-hover);
}

.site-footer .sf-sections {
  margin-inline: auto;
  max-width: var(--sf-maxw);
  padding: var(--sf-padding-block) 20px;
  display: grid;
  gap: var(--sf-gap);

  /* default desktop; we override below for tablet/mobile */
  grid-template-columns: repeat(4, 1fr);
  transition: max-height 220ms ease, opacity 200ms ease;
}

.site-footer .sf-section {
  min-width: 0;
}

.site-footer .sf-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--sf-text);
}

.site-footer .sf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .sf-list li + li {
  margin-top: 8px;
}

.site-footer .sf-list a {
  color: var(--sf-muted);
}

.site-footer .sf-list a:hover {
  color: var(--sf-link-hover);
}

.site-footer .sf-branding-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.site-footer .sf-logo img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--sf-bg-alt);
  /* background: var(--red-color); */
  padding: 4px;
  border: 1px solid var(--sf-border);
}

.site-footer .sf-title-wrap {
  min-width: 0;
}

.site-footer .sf-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.site-footer .sf-subtitle {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--red-color);
  font-style: italic;
}

.site-footer .sf-branding-desc {
  margin: 0 0 12px 0;
  font-size: 1.05rem;
  color: var(--sf-muted);
  line-height: 1.4;
}

.site-footer .sf-socials {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 10px 0 0 0;
  list-style: none;
}

.site-footer .sf-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--sf-bg-alt);
  border: 1px solid var(--sf-border);
}

.site-footer .sf-social-link i {
  font-size: var(--sf-icon-size);
}

.site-footer .sf-bottom {
  border-top: 1px solid var(--sf-border);
  background: linear-gradient(0deg, var(--sf-bg), var(--sf-bg));
  padding: 16px 20px;
}

.site-footer .sf-bottom, .site-footer .sf-bottom * {
  line-height: 1;
}

.site-footer .sf-copy {
  color: var(--sf-muted);
  margin: 0;
}

.site-footer .sf-legal {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

@media (min-width: 641px) {
  .site-footer .sf-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--sf-maxw);
    margin-inline: auto;
  }

  .site-footer .sf-legal {
    margin-top: 0;
  }
}

.site-footer .sf-mobile-toggle {
  display: none !important;
  /* width: 100%;
  background: var(--sf-bg-alt);
  color: var(--sf-text);
  border: 0;
  border-bottom: 1px solid var(--sf-border);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 10px;
  align-items: center; */
}

.site-footer .sf-mobile-toggle .sf-toggle-icon::before {
  content: "☰";
  display: inline-block;
  transform: translateY(-1px);
  margin-right: 8px;
}

@media (max-width: 640px) {
  /* .site-footer .sf-mobile-toggle {
    display: inline-flex;
  } */

  .site-footer .sf-sections {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px 16px;
    max-height: none;
    opacity: 1;
    overflow: hidden;
  }

  /* .site-footer .sf-sections[data-open='true'] {
    max-height: 1500px;
    opacity: 1;
  } */
}

@media (min-width: 641px) and (max-width: 1024px) {
  .site-footer .sf-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
  }
}

@media (min-width: 1025px) {
  .site-footer .sf-sections {
    grid-template-columns: 1.5fr 1fr 1fr 1fr
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.header-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.header-logo-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0;
}

.header-logo {
  width: 100%;
  height: 100%;
}

.header-text {
  text-align: center;
}

.header-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.header-subtitle {
  font-size: 0.75rem;
  color: #e3342f;
  font-style: italic;
}

@media (min-width: 640px) {
  .header-flex {
    flex-direction: row;
  }

  .header-logo-wrapper {
    margin-right: 0.5rem;
  }

  .header-text {
    text-align: left;
  }
}

.navbar {
  display: none;
}

@media (min-width: 768px) {
  .navbar {
    display: flex;
    gap: 2rem;
  }

  .get-app-desktop {
    display: block;
  }
}

.nav-link {
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  color: #e3342f;
}

.get-app-desktop {
  display: none;
}

.get-app-button {
  background-color: #e3342f;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.get-app-button:hover {
  background-color: #c53030;
}

.mobile-menu-button {
  display: inline-block;
  color: #718096;
  outline: none;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background-color: white;
  border-top: 1px solid #e2e8f0;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background-color: #f7fafc;
  color: #e3342f;
}

.mobile-app-button {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: #e3342f;
  color: white;
}

.mobile-app-button:hover {
  background-color: #c53030;
}
/* ====================== GOOGLE FONTS ====================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

/* ====================== VARIABLES CSS ====================== */
:root {
  --header-height: 4rem;

  --header-offset-mobile: var(--header-height);
  --header-offset-desktop: calc(var(--header-height) + 2rem);
  
  /* ====================== COLORS ====================== */
  /* Color mode HSL(hue, saturation, lihtness) */
  --black-color:         hsl(220, 24%, 12%);
  --black-color-light:   hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color:         #fff;
  --body-color:          hsl(220, 100%, 97%);
  --red-color:           #e71d36;

  --sh-bg:               #ffffff;
  --sh-text:             #111418;
  --sh-muted:            #4b5563;
  --sh-border:           #e5e7eb;
  --sh-surface:          #f6f7f9;
  --sh-surface-hover:    #eef1f5;
  --sh-hover:            #f9fafb;
  --sh-accent:           #0f62fe;

  /* ====================== Font and Typography ====================== */
  /* .5rem = 8px | 1rem = 16px */
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /* ====================== Font Weight ====================== */
  --font-regular: 400;
  --font-semi-bold: 600;

  /* ====================== z index ====================== */
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* ====================== Responsize typography ====================== */
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/* ====================== BASE ====================== 4:85 */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  padding-top: 56px;
  padding-top: var(--header-offset-mobile);
}

.header-body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

.header-body ul {
  list-style: none;
}

.header-body a {
  text-decoration: none;
}


/* ====================== REUSABLE CSS CLASSES ====================== */
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/* ====================== HEADER ====================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--sh-bg);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);

  border-bottom: 1px solid var(--sh-border);
}

/* ====================== NAV ====================== */
.nav {
  height: var(--header-height);
}

/* .nav__logo, .nav__burger, .nav__close {
  color: white;
} */

.nav__burger, .nav__close {
  color: var(--sh-text) !important;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .sh-branding-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header .sh-logo img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--black-color-light);
  padding: 5px;
  border: 1px solid var(--black-color-lighten);
}

.header .sh-title-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header .sh-title {
  color: var(--sh-text);
  font-size: 1.05rem;
  font-weight: var(--font-semi-bold);
  white-space: nowrap;
}

.header .sh-subtitle {
  color: var(--red-color);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
} */

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, .nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;

    background: var(--sh-surface);
    border-top: 1px solid var(--sh-border);
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    /* background-color: var(--black-color); */
    background-color: var(--sh-surface);
    padding-top: 1rem;
  }
}

.nav__link {
  /* color: var(--white-color); */
  color: var(--sh-text);
  /* background-color: var(--black-color); */
  background-color: var(--sh-bg);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  /* background-color: var(--black-color-light); */
  background-color: var(--sh-hover);
}


/* Show Menu */
.expand-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show Icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/* ====================== DROPDOWN ====================== */
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, .dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  /* color: var(--white-color); */
  color: var(--sh-text);
  /* background-color: var(--black-color-light); */
  background-color: var(--sh-surface);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .2s ease, color .2s ease;

  box-shadow: 1px solid var(--sh-border);
}

.dropdown__link:last-child, .dropdown__sublink:last-child {
  border-bottom: 0;
}

.dropdown__link i, .dropdown__sublink i {
  font-size: 1.25rem;
  /* font-weight: initial; */
  color: var(--sh-muted);
}

.dropdown__link:hover, .dropdown__sublink:hover {
  /* background-color: var(--black-color); */
  background-color: var(--sh-surface-hover);
}

.dropdown__menu, .dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out, opacity .3s, top .3s;

  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17,20,24,0.08);
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/* ====================== SUBMENU ====================== */
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--sg-bg);
}

/* ====================== BREAKPOINTS ====================== */
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  :root {
    --header-height: 3.5rem;
  }

  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }


  body {
    padding-top: 88px;
    padding-top: var(--header-offset-desktop);
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;

    background-color: transparent;
  }

  .nav__link:hover {
    background-color: transparent;

    color: var(--sh-text);
  }

  .dropdown__item, .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    /* transition: opacity .3s, top .3s; */
  }

  .dropdown__link, .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    /* position: absolute; */
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    /* transition: top .3s; */
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    /* transition: top .3s; */
  }
  
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&disply=swap");

:root {
  --red-color: #e71d36;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.xheader-body {
  min-height: 100vh;
  /* background: url(/background.jpg) no-repeat; */
  background: black;
  background-size: cover;
  background-position: center;
}

.xheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: .7rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.xheader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  backdrop-filter: blur(50px);
  z-index: -1;
}

/* 
.header-flex {
  display: flex;
  align-items: center;
  gap: .6rem;
} */

.xheader-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
          flex-direction: row;

  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;

  -webkit-column-gap: .6rem;
          column-gap: .6rem;
}

.xheader-logo-wrapper {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
}

.xheader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: auto;
}

.xheader-text {
  color: #000;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.xheader-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.xheader-subtitle {
  font-size: .9rem;
  font-weight: 515;
  font-style: italic;
  margin: 0;
  opacity: 0.85;
  color: var(--red-color);
}
/* 
.navbar {
  display: flex;
  flex-direction: row;
} */

.xnavbar a {
  font-size: 1.15rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2.5rem;
  
  /* display: inline-block; */
}

#xcheck {
  display: none;

  /* position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap; */
}

.xicons {
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: #000;
  cursor: pointer;
  display: none;
}

/* BREAKPOINTS */

@media (max-width: 992px) {
  .xheader {
    padding: .7rem 5%;
  }
}

@media (max-width: 858px) {
  .xicons { display: inline-flex; }

  #xcheck:checked~.icons #menu-icon { display: none; }
  .xicons #close-icon { display: none; }
  #xcheck:checked~.icons #close-icon { display: block; }

  .xnavbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: #e9ecef;
    backdrop-filter: blur(50px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: .3s ease;
  }

  /* .navbar {
    display: none;
    position: fixed;
    top: calc((0.7rem * 2) + 1.3rem);
    left: 0 !important;
    width: 100vw !important;
    flex-direction: column;
    align-items: stretch;
    background: #e9ecef;
    backdrop-filter: blur(50px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    z-index: 100;
  } */

  #xcheck:checked~.navbar {
    height: 17.7rem;
    /* display: flex !important; */
  }

  .xnavbar a {
    display: block;
    block-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    transition: .3s ease;
  }

  /* .navbar a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    margin: 0;
    text-align: center;
    transform: translateY(-50px);
    transition: .3s ease;
  } */

  #xcheck:checked~.navbar a {
    transform: translateY(0);
    transition-delay: calc(.15s * var(--i));
  }
}

/* Iphone Breakpoint */
@media (max-width: 500px) {
  .xheader-title {
    font-size: 1.1rem;
  }

  .xheader-subtitle {
    font-size: .8rem;
  }
}

/* Samsung Andriod Breakpoint */
@media (max-width: 384px) {
  .xheader-title {
    font-size: 1.1rem;
  }

  .xheader-subtitle {
    font-size: .8rem;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.home-page {

  --hero-red:       #e71d36;
  --hero-black:     #111418;
  --hero-silver:    #c9cdd3;
  --hero-white:     #ffffff;

  --hero-bg:         linear-gradient(135deg, var(--hero-silver), var(--hero-silver));
  --hero-text:       #000000;
  --hero-subtext:    rgba(0, 0, 0, 0.85);



  --hero-radius:     14px;
  --hero-gap:        20px;
  --hero-max-w:      960px;
  --hero-min-h:      55vh;

  --hero-font:       "Montserrat", 
                     system-ui, 
                     -apple-system, 
                     Segoe UI, 
                     Roboto, 
                     Arial, 
                     sans-serif;

  font-family:       var(--hero-font);
}

.home-page, .home-page * {
  box-sizing: border-box;
}

.home-page *:where(h1, h2, h3, h4, p, ul) {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--hero-min-h);
  background: var(--hero-bg);
  padding: 40px 16px;
  text-align: center;
  color: var(--hero-text);
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 15% 20%,
    rgba(231, 29, 54, 0.16) 0%,
    rgba(231, 29, 54, 0.06) 40%,
    transparent 70%
  ),
  radial-gradient(
    80% 60% at 85% 80%,
    rgba(231, 29, 54, 0.16) 0%,
    rgba(231, 29, 54, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.home-page .hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--hero-max-w);
  display: grid;
  gap: var(--hero-gap);
}

.home-page .hero-title {
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.home-page .hero-subtitle {
  font-size: 1.4rem;
  color: var(--hero-subtext);
  line-height: 1.6;
  margin-top: 10px;
}

.home-page .hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

/* .home-page .hero-badges .app-badge img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.home-page .hero-badges .app-badge img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
} */

.home-page .app-badge {
  position: relative;
  display: inline-block;
}

.home-page .app-badge img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.home-page .app-badge:hover img {
  transform: scale(1.04);
}

.app-badge--soon {
  cursor: not-allowed;
  pointer-events: none;
}

.home-page .app-badge--soon img {
  filter: grayscale(1) contrast(0.9) brightness(0.9);
  opacity: 0.75;
}

.home-page .app-badge--soon::after {
  content: "Coming soon";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hero-white);
  background: rgba(17, 20, 24, 0.45);
  border-radius: 8px;
  letter-spacing: 0.2px;
}

@media (max-width: 640px) {
  .home-page .hero {
    padding: 32px 14px;
  }

  .home-page .hero-title {
    font-size: 1.8rem;
  }

  .home-page .hero-subtitle {
    font-size: 1rem;
  }

  .home-page .hero-badges {
    flex-direction: column;
    gap: 14px;
  }

}

/* ================ FEATURES SECTION =============== */

.home-page .features-section {
  margin-block: clamp(48px, 6vw, 96px);
  padding-inline: clamp(16px, 6vw, 48px);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f9fafb
  );
}

.home-page .features-container {
  margin-inline: auto;
  text-align: center;
}

.home-page .features-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111417;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.home-page .features-cards {
  display: grid;
  justify-content: center;
  gap: 24px;
  grid-template-columns: 1fr;
}

.home-page .feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  padding: 24px;
  /* transition: transform 0.18s ease, box-shadow 0.18s ease; */
  text-align: center;
  max-width: 395px;
  margin-inline: auto;
}

.home-page .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.home-page .feature-icon {
  display: block;
  font-size: 2.5rem;
  color: #e71d36;
  margin-bottom: 12px;
}

.home-page .feature-card .feature-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111418;
  margin-bottom: 8px;
}

.home-page .feature-card .feature-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

@media (max-width: 641px) {
  .home-page .features-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
  }

  .home-page .feature-card {
    max-width: 315px;
    margin-inline: auto;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .home-page .features-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .home-page .feature-card {
    max-width: 335px;
    margin-inline: auto;
  }

  .home-page .features-title {
    font-size: 1.6rem;
  }
}

@media (min-width: 1025px) {
  .home-page .feature-container {
    max-width: 1100px;
    margin-inline: auto;
  }

  .home-page .features-cards {
    display: flex;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .home-page .feature-card {
    /* flex: 0 1 280px; */
    /* max-width: 300px; */
    margin-inline: 0;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.login-page {
  --lp-bg-overlay:      rgba(14, 17, 22, 0.55);
  --lp-card:            rgba(255, 255, 255, 0.96);
  --lp-text:            #0f172a;
  --lp-muted:           #475569;
  --lp-border:          #e5e7eb;
  --lp-accent-alt:      #0f62fe;
  --lp-accent:          #e71d36;
  --lp-accent-contrast: #ffffff;
  
  --lp-radius:          14px;
  --lp-field-height:    52px;
  --lp-gap:             16px;
  --lp-card-w:          420px;
  --lp-card-pad:        22px;
  
  --lp-shadow:          0 12px 28px rgba(15, 23, 42, 0.18);

  --lp-font:            "Montserrat", 
                        system-ui, 
                        -apple-system, 
                        Segoe UI, 
                        Roboto, 
                        Arial, 
                        sans-serif;
}

.login-page, .login-page * {
  box-sizing: border-box;
}

.login-page *:where(h1,h2,h3,h4,p,ul) {
  margin: 0;
  padding: 0;
  list-style: none;
}

.login-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  row-gap: 18px;
  padding: 20px 16px 28px;
  font-family: var(--lp-font);
}

.login-page .login-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
} 

.login-page::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.55) 20%,
    rgba(255, 255, 255, 0.65) 100%
    ); */
    z-index: 1;
  pointer-events: none;
}

.login-page .login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--lp-card-w);
  margin: 0 auto;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  padding: calc(var(--lp-card-pad) + 4px);
  backdrop-filter: blur(4px);

  display: grid;
  align-items: start;
  row-gap: 18px;
}

.login-page .login-header {
  text-align: left;
}

.login-page .login-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lp-text);
}

.login-page .login-subtitle {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--lp-muted);
}

.login-page .login-form {
  display: grid;
  gap: var(--lp-gap);
}

.login-page .login-field {
  position: relative;
  height: var(--lp-field-height);
}

.login-page .login-input {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--lp-border);
  border-radius: 10px;
  font: inherit;
  color: var(--lp-text);
  padding: 0.75rem 0.95rem;
  line-height: 1.4;
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.login-page .login-input:hover {
  border-color: #bfd3ff;
}

.login-page .login-input:focus {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.15);
}

.login-page .login-label {
  position: absolute;
  left: 0.75rem;
  top: 0.95rem;
  padding: 0 0.35rem;
  background: #fff;
  color: var(--lp-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 160ms ease;
}

.login-page .login-input:focus ~ .login-label,
.login-page .login-input:not(:placeholder-shown) ~ .login-label {
  top: -0.55rem;
  left: 0.6rem;
  font-size: 0.78rem;
  color: var(--lp-accent);
}

.login-page .login-submit {
  margin-top: 4px;
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--lp-accent);
  color: var(--lp-accent-contrast);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: filter .18s ease, transform .02s ease-in-out;
}

.login-page .login-submit:hover {
  filter: brightness(1.05);
}

.login-page .login-submit:active {
  transform: translateY(1px);
}

.login-page .login-meta {
  margin-top: 8px;
  text-align: center;
}

.login-page .login-register {
  margin-top: 6px;
  font-size: 0.9rem;
  text-align: center;
  color: var(--lp-muted);
}

.login-page .register-link {
  color: var(--lp-accent);
  font-weight: 600;
  text-decoration: none;
}
.login-page .register-link:hover {
  text-decoration: underline;
}

.login-page .login-link {
  color: var(--lp-accent);
  text-decoration: none;
}

.login-page .login-link:hover {
  text-decoration: underline;
}

.login-page .cookie-note {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(960px, 92vw);
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.10);
}

.login-page .cookie-note p {
  font-size: 0.9rem;
  color: var(--lp-text);
  text-align: center;
  line-height: 1.45;
}

.login-page .cookie-link {
  color: var(--lp-accent);
  text-decoration: none;
  font-weight: 600;
}

.login-page .cookie-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .login-page {
    padding: 16px 12px 22px;
  }

  .login-page .login-card {
    padding: calc(var(--lp-card-pad) + 2px);
  }

  .login-page .login-title {
    font-size: 1.25rem;
  }

  .login-page .login-subtitle {
    font-size: 0.9rem;
  }

  .login-page .cookie-note p {
    font-size: 0.88rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .login-page {
    padding: 22px 20px 26px;
  }

  .login-page .login-card {
    max-width: 460px;
  }
}

@media (min-width: 1025px) {
  .login-page .login-card {
    max-width: 520px;
    /* border: 3px solid red !important; */
  }
}




/* Font to match your other auth pages */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

/* =========================
   Scoped variables (rsp = reset page)
   ========================= */
.reset-page {
  --rsp-card:            rgba(255, 255, 255, 0.96);
  --rsp-text:            #0f172a;   /* slate-900 */
  --rsp-muted:           #475569;   /* slate-600 */
  --rsp-border:          #e5e7eb;   /* gray-200 */
  --lp-accent-alt:       #0f62fe;
  --rsp-accent:          #e71d36;   /* blue for focus & links */
  --rsp-accent-contrast: #ffffff;

  --rsp-radius:          14px;
  --rsp-field-height:    52px;
  --rsp-gap:             16px;
  --rsp-card-w:          420px;
  --rsp-card-pad:        22px;

  --rsp-shadow:          0 12px 28px rgba(15, 23, 42, 0.18);
  --rsp-font:            "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   Scoped reset
   ========================= */
.reset-page, .reset-page * { box-sizing: border-box; }
.reset-page *:where(h1,h2,h3,h4,p,ul) { margin: 0; padding: 0; list-style: none; }

/* =========================
   Layout & background
   ========================= */
.reset-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;

  display: grid;
  grid-template-rows: auto;         /* single centered row */
  place-items: center;
  justify-items: center;
  row-gap: 18px;

  padding: 20px 16px 28px;
  font-family: var(--rsp-font);
}

/* Background image via image_tag; never intercept clicks */
.reset-page .reset-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Soft overlay for readability (behind card) */
.reset-page::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.55) 20%,
    rgba(255,255,255,0.65) 100%
  ); */
  z-index: 1;
  pointer-events: none;
}

/* =========================
   Card
   ========================= */
.reset-page .reset-card {
  position: relative;
  z-index: 2;                       /* above overlay */
  width: 100%;
  max-width: var(--rsp-card-w);
  background: var(--rsp-card);
  border: 1px solid var(--rsp-border);
  border-radius: var(--rsp-radius);
  box-shadow: var(--rsp-shadow);
  padding: calc(var(--rsp-card-pad) + 4px);
  backdrop-filter: blur(4px);

  display: grid;
  align-content: start;
  row-gap: 18px;                    /* header ↔ errors ↔ form spacing */
}

/* =========================
   Headings
   ========================= */
.reset-page .reset-header { text-align: left; }   /* match login/registration left alignment */
.reset-page .reset-title   { font-size: 1.35rem; font-weight: 600; color: var(--rsp-text); }
.reset-page .reset-subtitle{ margin-top: 6px; font-size: 0.95rem; color: var(--rsp-muted); }

/* =========================
   Error summary (optional)
   ========================= */
.reset-page .reset-errors {
  border: 1px solid #fecaca;        /* red-200 */
  background: #fff1f2;              /* rose-50 */
  color: #7f1d1d;                   /* red-900 */
  border-radius: 10px;
  padding: 10px 12px;
}
.reset-page .errors-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.reset-page .errors-list li { font-size: 0.9rem; line-height: 1.4; }

/* =========================
   Form & fields
   ========================= */
.reset-page .reset-form { display: grid; gap: var(--rsp-gap); }

.reset-page .reset-field {
  position: relative;
  height: var(--rsp-field-height);
}

/* Input */
.reset-page .reset-input {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 2px solid var(--rsp-border);
  border-radius: 10px;
  font: inherit;
  color: var(--rsp-text);
  padding: 0.75rem 0.95rem;          /* balanced vertical padding (centered caret) */
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.reset-page .reset-input:hover { border-color: #bfd3ff; }
.reset-page .reset-input:focus {
  border-color: var(--rsp-accent);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.15);
}

/* Reuse your palette */
.reset-page .reset-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* =========================
   Floating label (robust)
   ========================= */
.reset-page .reset-field .reset-label {
  position: absolute;
  left: 0.75rem;
  top: 0.95rem;
  padding: 0 0.35rem;
  background: #fff;
  color: var(--rsp-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: transform 160ms ease, top 160ms ease, left 160ms ease, font-size 160ms ease, color 160ms ease;
}

/* Float when field focused (works for invalid too) */
.reset-page .reset-field:focus-within .reset-label {
  top: -0.55rem;
  left: 0.6rem;
  font-size: 0.78rem;
  color: var(--rsp-accent);
}

/* Keep label floated when there’s content */
.reset-page .reset-field .reset-input:not(:placeholder-shown) + .reset-label {
  top: -0.55rem;
  left: 0.6rem;
  font-size: 0.78rem;
  color: var(--rsp-accent);
}

/* Per-field invalid visuals (if you add .is-invalid) */
.reset-page .reset-field.is-invalid .reset-input { border-color: #ef4444; }
.reset-page .reset-field.is-invalid:focus-within .reset-label,
.reset-page .reset-field.is-invalid .reset-input:not(:placeholder-shown) + .reset-label { color: #b91c1c; }

/* =========================
   Submit + meta link
   ========================= */
.reset-page .reset-submit {
  margin-top: 4px;
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--rsp-accent);
  color: var(--rsp-accent-contrast);
  font-weight: 600; font-size: 1rem;
  cursor: pointer;
  transition: filter .18s ease, transform .02s ease-in-out;
}
.reset-page .reset-submit:hover { filter: brightness(1.05); }
.reset-page .reset-submit:active { transform: translateY(1px); }

.reset-page .reset-meta {
  margin-top: 8px;
  text-align: center;
  color: var(--rsp-muted);
}
.reset-page .reset-link {
  color: var(--rsp-accent);
  text-decoration: none; font-weight: 600;
}
.reset-page .reset-link:hover { text-decoration: underline; }

/* =========================
   Responsiveness
   ========================= */
@media (max-width: 640px) {
  .reset-page { padding: 16px 12px 22px; }
  .reset-page .reset-card { padding: calc(var(--rsp-card-pad) + 2px); }
  .reset-page .reset-title { font-size: 1.25rem; }
  .reset-page .reset-subtitle { font-size: 0.9rem; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .reset-page { padding: 22px 20px 26px; }
  .reset-page .reset-card { max-width: 520px; }
}

@media (min-width: 1025px) {
  .reset-page .reset-card {
    width: 460px;      /* set to your preferred fixed desktop width */
    max-width: none;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.registration-page {
  --rp-bg-overlay:      rgba(14, 17, 22, 0.55);
  --rp-card:            rgba(255, 255, 255, 0.96);
  --rp-text:            #0f172a;
  --rp-muted:           #475569;
  --rp-border:          #e5e7eb;
  --rp-accent:          #0f62fe;
  --rp-accent-alt:      #e71d36;
  --rp-accent-contrast: #ffffff;

  --rp-radius:          14px;
  --rp-field-height:    52px;
  --rp-gap:             16px;
  --rp-card-w:          420px;
  --rp-card-pad:        22px;

  --rp-shadow:          0 12px 28px rgba(15, 23, 42, 0.18);

  --rp-font:            "Montserrat", 
                        system-ui, 
                        -apple-system, 
                        Segoe UI, 
                        Roboto, 
                        Arial, 
                        sans-serif;
}

.registration-page, .registration-page * {
  box-sizing: border-box;
}

.registration-page *:where(h1,h2,h3,h4,p,ul) {
  margin: 0;
  padding: 0;
  list-style: none;
}

.registration-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto;
  place-items: center;
  justify-items: center;
  row-gap: 18px;
  padding: 20px 26px 28px;
  font-family: var(--rp-font);
}

.registration-page .registration-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.registration-page::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.55) 20%,
    rgba(255, 255, 255, 0.65) 100%
  ); */
  z-index: 1;
  pointer-events: none;
}

.registration-page .registration-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--rp-card-w);
  background: var(--rp-card);
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  box-shadow: var(--rp-shadow);
  padding: calc(var(--rp-card-pad) + 4px);
  backdrop-filter: blur(4px);

  display: grid;
  align-content: start;
  row-gap: 18px;
}

.registration-page .registration-header {
  text-align: left;
}

.registration-page .registration-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rp-text);
}

.registration-page .registration-subtitle {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--rp-muted);
}

.registration-page .registration-errors {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #7f1d1d;
  border-radius: 10px;
  padding: 10px 12px;
}

.registration-page .errors-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.registration-page .errors-list li {
  font-size: 0.9rem;
  line-height: 1.4;
}

.registration-page .registration-form {
  display: grid;
  gap: var(--rp-gap);
}

.registration-page .registration-field {
  position: relative;
  height: var(--rp-field-height);
}

.registration-page .registration-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--rp-border);
  border-radius: 10px;
  font: inherit;
  color: var(--rp-text);
  padding: 0.75rem 0.95rem;
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.registration-page .registration-input:hover {
  border-color: #bfd3ff;
}

.registration-page .registration-input:focus {
  border-color: var(--rp-accent-alt);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.15);
}

.registration-page .registration-field .registration-label {
  position: absolute;
  left: 0.75rem;
  top: 0.95rem;
  padding: 0 0.35rem;
  background: #fff;
  color: var(--rp-muted);
  font-size: 0.95rem;
  pointer-events: none;
  /* transition: all 160ms ease; */
  transition: transform 160ms ease,
              top 160ms ease,
              left 160ms ease,
              font-size 160ms ease,
              color 160ms ease;
}

/* .registration-page .registration-field .registration-input:focus + .registration-label,
.registration-page .registration-field .registration-input:not(:placeholder-shown) + .registration-label {
  top: -0.55rem;
  left: 0.6rem;
  font-size: 0.78rem;
  color: var(--rp-accent-alt);
} */

/* .registration-page .registration-field.is-invalid .registration-input:focus + .registration-label,
.registration-page .registration-field.is-invalid .registration-input:not(:placeholder-shown) + .registration-label {
  top: -0.55rem;
  left: 0.6rem;
  font-size: 0.78rem;
  color: #b91c1c;
} */

.registration-page .registration-field:focus-within .registration-label {
  top: -0.55rem;
  left: 0.6rem;
  font-size: 0.78rem;
  color: var(--rp-accent-alt);
}

.registration-page .registration-field .registration-input:not(:placeholder-shown) + .registration-label {
  top: -0.55rem;
  left: 0.6rem;
  font-size: 0.78rem;
  color: var(--rp-accent-alt);
}

.registration-page .registration-field.is-invalid:focus-within .registration-label,
.registration-page .registration-field.is-invalid .registration-input:not(:placeholder-shown) + .registration-label {
  color: #b91c1c;
}

.registration-page .registration-field .registration-input:-webkit-autofill + .registration-label {
  top: -0.55rem;
  left: 0.6rem;
  font-size: 0.78rem;
  color: var(--rp-accent-alt);
}

.registration-page .registration-field.is-invalid .registration-input {
  border-color: #ef4444;
}

.registration-page .registration-field.is-invalid .registration-label {
  color: #b91c1c;
}

.registration-page .field-errors {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #b45309;
}

.registration-page .registration-submit {
  margin-top: 4px;
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--rp-accent-alt);
  color: var(--rp-accent-contrast);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: filter .18s ease, transform .02s ease-in-out;
}

.registration-page .registration-submit:hover {
  filter: brightness(1.05);
}

.registration-page .registration-submit:active {
  transform: translateY(1px);
}

.registration-page .registration-meta {
  margin-top: 8px;
  text-align: center;
  color: var(--rp-muted);
}

.registration-page .registration-link {
  color: var(--rp-accent-alt);
  text-decoration: none;
  font-weight: 600;
}

.registration-page .registration-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .registration-page {
    padding: 16px 12px 22px;
  }

  .registration-page .registration-card {
    padding: calc(var(--rp-card-pad) + 2px);
  }

  .registration-page .registration-title {
    font-size: 1.25rem;
  }

  .registration-page .registration-subtitle {
    font-size:  0.9rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .registration-page {
    padding: 22px 20px 26px;
  }

  .registration-page .registration-card {
    max-width: 560px;
  }
}

@media (min-width: 1025px) {
  .registration-page .registration-card {
    width: 520px;
    max-width: none;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

/* =========================
   Scoped vars & resets
   ========================= */
.email-template-page {
  --etp-text:        #111418;
  --etp-muted:       #475569;
  --etp-border:      #e5e7eb;
  --etp-card:        rgba(255,255,255,0.96);
  --etp-shadow:      0 12px 28px rgba(15, 23, 42, 0.18);
  --etp-accent:      #e71d36; /* red button */
  --etp-radius:      14px;
  --etp-pad:         22px;
  --etp-card-w:      900px;

  --etp-font: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.email-template-page, .email-template-page * { box-sizing: border-box; }
.email-template-page *:where(h1,h2,h3,h4,p,ul) { margin: 0; padding: 0; list-style: none; }

/* =========================
   Layout & background
   ========================= */
.email-template-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 20px 16px 28px;
  font-family: var(--etp-font);
}

.email-template-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 10% 15%, rgba(231,29,54,0.10) 0%, transparent 60%),
    radial-gradient(65% 45% at 90% 85%, rgba(17,20,24,0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.92) 100%);
  z-index: 0;
  pointer-events: none;
}

/* =========================
   Card
   ========================= */
.email-template-page .etp-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--etp-card-w);
  background: var(--etp-card);
  border: 1px solid var(--etp-border);
  border-radius: var(--etp-radius);
  box-shadow: var(--etp-shadow);
  padding: calc(var(--etp-pad) + 4px);
  backdrop-filter: blur(4px);

  display: grid;
  row-gap: 20px;
}

/* =========================
   Header
   ========================= */
.email-template-page .etp-header { text-align: left; }

.email-template-page .etp-title {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--etp-text);
}

.email-template-page .etp-subtitle {
  margin-top: 6px;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--etp-muted);
}

/* =========================
   Code Blocks (Subject + Text)
   ========================= */
.email-template-page .etp-code-title {
  /* margin-top: 6px; */
  /* margin-bottom: 8px; */
  font-weight: 600;
  color: var(--etp-text);
  font-size: 1.05rem;
}

.email-template-page .etp-copy-block {
  display: flex;
  flex-direction: column;    /* Button above input/textarea */
  gap: 10px;
  margin-bottom: 18px;
}

.email-template-page .etp-copy-header { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
/* Red button w/ white text */
.email-template-page .etp-copy-btn {
  /* align-self: flex-start; */
  background: var(--etp-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  height: 36px;
  padding: 0 14px;
  font-weight: 600;
  cursor: pointer;
  transition: filter .18s ease, transform .02s ease-in-out;
}
.email-template-page .etp-copy-btn:hover { filter: brightness(1.06); }
.email-template-page .etp-copy-btn:active { transform: translateY(1px); }

.email-template-page .etp-subject {
  width: 100%;
  height: 44px;
  border: 1px solid var(--etp-border);
  border-radius: 12px;
  padding: 0 12px;
  font-size: 1rem;
  color: var(--etp-text);
  background: #fff;
  outline: none;
}

.email-template-page .etp-textarea {
  width: 100%;
  min-height: 360px;         /* taller for glance view */
  border: 1px solid var(--etp-border);
  border-radius: 12px;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  color: #111418;
  background: #ffffff;
  resize: vertical;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 640px) {
  .email-template-page { padding: 16px 12px 22px; }
  .email-template-page .etp-card { padding: calc(var(--etp-pad) + 2px); }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .email-template-page { padding: 22px 20px 26px; }
  .email-template-page .etp-card { max-width: 720px; }
}

@media (min-width: 1025px) {
  .email-template-page .etp-card { max-width: 900px; }
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

.uc-page {
  --uc-text:         #111418;
  --uc-muted:        #4b5563;
  --uc-bg:           #ffffff;
  --uc-surface:      rgba(255, 255, 255, 0.96);
  --uc-border:       #e5e7eb;
  --uc-accent:       #e71d36;
  --uc-accent-alt:   #0f626e;
  --uc-shadow:       0 12px 28px rgba(15, 23, 42, 0.18);

  --uc-card-w:       420px;
  --uc-radius:       14px;
  --uc-pad:          22px;

  --uc-font:         "Montserrat", 
                     system-ui, 
                     -apple-system, 
                     Segoe UI, 
                     Roboto, 
                     Arial, 
                     sans-serif;
}

.uc-page .uc-page * {
  box-sizing: border-box;
}

.uc-page *:where(h1, h2, h3, h4, p, a) {
  margin: 0;
}

.uc-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 20px 16px 28px;
  font-family: var(--uc-font);
}

.uc-page .uc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.uc-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.uc-page .uc-card {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: var(--uc-card-w);
  background: var(--uc-surface);
  border: 1px solid var(--uc-border);
  border-radius: var(--uc-radius);
  box-shadow: var(--uc-shadow);
  padding: calc(var(--uc-pad) + 4px);
  backdrop-filter: blur(4px);

  display: grid;
  row-gap: 18px;
}

.uc-page .uc-header {
  text-align: center;
}

.uc-page .uc-icon {
  font-size: clamp(2rem, 2.5vw, 3rem);
  color: var(--uc-accent);
  display: inline-block;
  margin-bottom: 8px;
}

.uc-page .uc-title {
  font-size:  clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--uc-text);
}

.uc-page .uc-subtitle {
  margin-top: 8px;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--uc-muted);
  line-height: 1.5;
}

.uc-page .uc-actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.uc-page .uc-btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  height: 48px;
  line-height: 48px;
  border-radius: 10px;
  background: var(--uc-accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: filter .18s ease, transform .02s ease-in-out;
}

.uc-page .uc-btn:hover {
  filter: brightness(1.06);
}

.uc-page .uc-btn:active {
  transform: translateY(1px);
}

.uc-page .uc-link {
  display: inline-block;
  text-align: center;
  color: var(--uc-accent-alt);
  text-decoration: none;
  font-weight: 600;
}

.uc-page .uc-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .uc-page {
    padding: 16px 12px 22px;
  }

  .uc-page .uc-card {
    padding: calc(var(--uc-pad) + 2px);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .uc-page {
    padding: 22px 20px 26px;
  }

  .uc-page .uc-card {
    max-width: 560px;
  }
}

@media (min-width: 1025px) {
  .uc-page .uc-card {
    max-width: 640px;
  }

  .uc-page .uc-actions {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    /* grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 14px; */
  }

  .uc-page .uc-btn {
    width: 100%;
  }
}
/*


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

*{
  margin: 0;
  padding: 0;
}

body{
  min-height: 100vh;
}
