/* oc-admin-clean.css
   Admin-only UI styles
   Front-end widget and public component CSS removed.
*/
.oc-template-wrap,
.oc-gallery,
.oc-layout-row {
  clear: both;
}
.oc-embed-pdf object,

.oc-embed-pdf iframe {

  width: 100%;

  min-height: 400px;

  border: 0;

}
.oc-dashboard-updates {
  margin-top: .25rem;
}

.oc-dashboard-update {
  border: 1px solid #d7e3f4;
  background: #f5f9ff;
  border-radius: .5rem;
  padding: 1rem;
  margin-bottom: .75rem;
}

.oc-dashboard-update:last-child {
  margin-bottom: 0;
}

.oc-dashboard-update-title {
  font-weight: 700;
  margin-bottom: .35rem;
}

.oc-dashboard-update-message {
  font-size: .95rem;
  line-height: 1.45;
}

.oc-dashboard-update-link {
  display: inline-block;
  margin-top: .5rem;
  font-weight: 600;
}

.oc-dashboard-update-info {
  border-color: #d7e3f4;
  background: #f5f9ff;
}

.oc-dashboard-update-success {
  border-color: #cfe8d5;
  background: #f5fff7;
}

.oc-dashboard-update-warning {
  border-color: #f1dfaa;
  background: #fffaf0;
}

.oc-dashboard-update-danger {
  border-color: #f1c7c7;
  background: #fff6f6;
}

body {font-family: "Poppins", sans-serif;
  font-size: 16px;}

html,
body {
  height: 100%;    

}
.oc-switch input {
  display: none;
}
.oc-switch {
  display: inline-block;
  width: 40px;
  height: 20px;
  margin: 0;
  position: relative;
}
.oc-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  box-shadow: 0 0 0 2px #777, 0 0 4px #777;
  cursor: pointer;
  border: 4px solid transparent;
  overflow: hidden;
  transition: .4s;
  background: #C0C0C0;
}
.oc-slider:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #777;
  border-radius: 30px;
  transform: translateX(-20px);
  transition: .4s;
}
.oc-switch input:checked + .oc-slider:before {
  transform: translateX(20px);
  background: green;
}
.oc-switch input:checked + .oc-slider {
  box-shadow: 0 0 0 2px limeGreen, 0 0 2px green;
  background: #90D490;
}
 .introjs-tooltip {
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
  font-size: 14px;
  min-width: 420px;
  max-width: 560px;

}

.introjs-tooltip-title {
  font-weight: 700;
}

.introjs-helperLayer {
  box-shadow: 0 0 0 9999px rgba(0,0,0,.45), 0 0 0 3px #ffc107;
  border-radius: 8px;
}

.introjs-button {
  border-radius: 6px;
}

 @media (max-width: 600px) {

  .introjs-tooltip {

    min-width: auto;

    max-width: calc(100vw - 32px);

  }

}


#admin-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#content-wrapper {
  flex: 1 0 auto;
}

#footer,
footer.footer {
  flex-shrink: 0;
}

.form-control { font-size: .85em; margin-bottom:0px; }

.header { font-size: 2rem; }
.header-logo {
  width: 278px;
  height: 50px;
  background: url(../images/OC_logo.png) no-repeat;
  display: inline-block;
}

strong {color:#880000;}

.oc-top-notice {
  width: 100%;
  padding: 1rem .5rem 1rem .5rem; 
  text-align: center;
  position: relative;
  z-index: 1040;
  font-size: 1.5em;
}

.sidebar-item-help{
  font-size:.7rem;
  line-height:1.3;
}


/* =========================================================
   Popover
   ========================================================= */
.oc-popover { position: fixed; bottom: 24px; z-index: 1045; width: min(340px, calc(100vw - 32px)); max-width: 340px; transform: translateY(16px); opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease, visibility .25s ease; font-family: inherit; }
.oc-popover.oc-popover-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.oc-popover.oc-popover-right { right: 16px; }
.oc-popover.oc-popover-left { left: 16px; }
.oc-popover-box { border-radius: 14px; box-shadow: 0 14px 30px rgba(0,0,0,.18); overflow: hidden; }
.oc-popover-inner { padding: 16px 16px 14px; position: relative; }
.oc-popover-title { font-size: 1.05rem; font-weight: 700; line-height: 1.25; margin: 0 0 6px; }
.oc-popover-message { font-size: .96rem; line-height: 1.45; margin: 0 0 12px; }
.oc-popover-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.oc-popover-btn { display: inline-block; padding: 10px 14px; border-radius: 999px; text-decoration: none; font-weight: 700; line-height: 1.1; }
.oc-popover-close { position: absolute; top: 8px; right: 8px; background: transparent; border: 0; cursor: pointer; font-size: 1.15rem; line-height: 1; padding: 6px 8px; }
.oc-popover-hidden { display: none !important; }
.oc-popover-preview { position: relative; left: auto; right: auto; bottom: auto; transform: none; opacity: 1; visibility: visible; width: 100%; max-width: none; margin: 0 auto; }
.oc-popover-preview .oc-popover-box { box-shadow: none; }

@media (max-width: 767.98px) {
  .oc-popover.oc-popover-hide-mobile { display: none !important; }
  .oc-popover { bottom: 16px; width: calc(100vw - 24px); }
  .oc-popover.oc-popover-right { right: 12px; }
  .oc-popover.oc-popover-left { left: 12px; }
}

/* =========================================================
   Admin navigation
   ========================================================= */
.oc-admin-navbar {
  background: #0F2A4C;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.35rem 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.form-label{color:#880000; padding-top:10px;}

.footer{background-color:#0F2A4C;}
.footer a {color:#ffffff;}


.oc-admin-navbar .navbar-collapse,
.oc-admin-navbar .navbar-nav {
  justify-content: center;
}

.oc-admin-navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.oc-admin-nav-link {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 0.95rem !important;
  border-radius: 0.45rem;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.oc-admin-nav-link:hover,
.oc-admin-nav-link:focus,
.oc-admin-navbar .show > .oc-admin-nav-link {
  color: #ffffff !important;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.oc-admin-navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  padding: 0.45rem 0.7rem;
  border-radius: 0.5rem;
  box-shadow: none;
}

.oc-admin-navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.15);
}

.oc-admin-dropdown-menu {
  background: #fdfdfc;
  border: 1px solid rgba(15,42,76,0.12);
  border-radius: 0.75rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  padding: 0.4rem;
  min-width: 250px;
  margin-top: 0.35rem;
}

.oc-admin-dropdown-item {
  color: #1f2937;
  font-size: 0.94rem;
  border-radius: 0.5rem;
  padding: 0.6rem 0.8rem;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.oc-admin-dropdown-item:hover,
.oc-admin-dropdown-item:focus {
  background: #eef3f8;
  color: #0F2A4C;
}

@media (max-width: 991.98px) {
  .oc-admin-navbar { padding: 0.5rem 0.75rem; }
  .oc-admin-navbar .navbar-collapse {
    margin-top: 0.75rem;
    background: #12345e;
    border-radius: 0.75rem;
    padding: 0.5rem;
  }
  .oc-admin-nav-link { padding: 0.75rem 0.85rem !important; }
}

/* =========================================================
   Admin layout / helpers
   ========================================================= */
.admin-container-fixed,
.admin-container--narrow,
.oc-settings-page { max-width: 1140px; margin: 0 auto; }
.login-form2 { max-width: 450px; margin: 30px auto; }
.admin-spacer { margin: 0 0 1.5rem 0; }
.header-links,
.dashboard-link-reset { text-decoration: none; }
.nav-link--generate { color: #ffff00; }

.main-container .card.bg-light {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
}

.main-container .help-block,
.oc-settings-note,
.oc-settings-section-intro {
  font-size: 13px;
  color: #666;
}

.main-container .form-check-label { font-weight: normal; }
.form-check { margin-bottom: 0.5rem; }
.form-check-input { margin-right: 0.5rem; }
.form-check-label { vertical-align: middle; }

/* =========================================================
   Buttons / actions
   ========================================================= */
.btn-xs {
  padding: 0.2rem 0.4rem;
  font-size: 0.75rem;
  line-height: 1.2;
  border-radius: 0.2rem;
}

.btn-primary-action,
.btn-secondary-action,
.btn-danger-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary-action {
  background-color: #bb0000;
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
}

.btn-secondary-action {
  background-color: #f1f3f5;
  color: #333;
  border: 1px solid #d0d7de;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
}

.btn-danger-action {
  background-color: #d93636;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

.admin-action-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
}

.admin-action-row--center {
  justify-content: center;
}

/* =========================================================
   Settings editor modal
   ========================================================= */
.oc-settings-field {
  margin: 0 0 28px 0;
  padding: 0 0 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.oc-settings-editor-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 10px 0;
}

.oc-settings-html {
  display: none;
  width: 100%;
  min-height: 160px;
}

.oc-settings-label {
  display: block;
  margin: 0 0 8px 0;
}

#ocSettingsEditorModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.55);
}

#ocSettingsEditorModal.is-open {
  display: block;
}

.oc-settings-editor-shell {
  width: min(1180px, 96vw);
  height: min(92vh, 820px);
  margin: 24px auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
}

.oc-settings-editor-head,
.oc-settings-editor-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f8f9fa;
}

.oc-settings-editor-head { border-bottom: 1px solid rgba(0,0,0,0.08); }
.oc-settings-editor-foot {
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.oc-settings-editor-body {
  flex: 1;
  min-height: 0;
}

#ocSettingsEditorFrame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   Section headers / badges
   ========================================================= */
.section-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  margin-bottom: 12px;
}

.section-header .step-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 36px;
  margin: 0;
}

.section-header h2 {
  margin: 0 !important;
  width: auto !important;
  display: block !important;
  float: none !important;
}

.step-site { background-color: #0d6efd; }
.step-volunteer { background-color: #198754; }
.step-donation { background-color: #fd7e14; }
.step-contact { background-color: #6f42c1; }
.step-sidebar { background-color: #20c997; }
.step-code { background-color: #343a40; }
.step-launch { background-color: #dc3545; }
.step-policy { background-color: #6f42c1; }
.step-elements { background-color: #20c997; }
.step-forms { background-color: #198754; }

/* =========================================================
   Builder / image picker / editor frame
   ========================================================= */
.nav-builder-dropzone,
.nav-builder-main-list,
.nav-builder-sub-list {
  min-height: 70px;
  border: 2px dashed rgba(0,0,0,.1);
  border-radius: .5rem;
  padding: .5rem;
}

.oc-image-picker-preview {
  min-height: 96px;
  padding: 8px;
  border: 1px dashed rgba(0,0,0,.18);
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-image-picker-preview img {
  max-width: 100%;
  max-height: 220px;
  height: auto;
  display: block;
  border-radius: 4px;
}

.oc-admin-editor-wrap,
.oc-editor-width-wide { max-width: 1180px; }
.oc-editor-width-standard { max-width: 765px; }

.oc-editor-frame {
  width: 100%;
  min-height: 800px;
  height: 800px;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  background: #fff;
  display: block;
}

@media (max-width: 991.98px) {
  .oc-editor-width-wide,
  .oc-editor-width-standard { max-width: 100%; }
  .oc-editor-frame { min-height: 650px; height: 650px; }
}

@media (max-width: 575.98px) {
  .oc-editor-frame { min-height: 520px; height: 520px; }
}

/* =========================================================
   Dashboard / misc
   ========================================================= */
#oc-analytics-chart { max-height: 220px; }
.dashboard-intro-title { font-size: 22px; }
.dashboard-intro-subtitle { font-size: 20px; }
.dashboard-help-icon { font-size: 12px; text-align: left; }
.dashboard-frame { width: 100%; max-width: 600px; border: 0; }
.dashboard-frame-wrap { text-align: center; }

.oc-required { color: #800000; font-weight: 700; }
.oc-input-short { max-width: 140px; }
.oc-input-readonlyish { background-color: #f3f4f6; color: #6c757d; }


/* =========================================================
   Countdown widget
   ========================================================= */
.oc-countdown-post {
  display: none;
}

.oc-countdown-width-full { width: 100%; max-width: none; margin-left: auto; margin-right: auto; }
.oc-countdown-width-medium { width: 100%; max-width: 760px; margin-left: auto; margin-right: auto; }
.oc-countdown-width-small { width: 100%; max-width: 520px; margin-left: auto; margin-right: auto; }

.oc-countdown-widget {
  background: var(--oc-countdown-bg, var(--oc-secondary, #1f2937));
  border-radius: 14px;
  padding: 28px 24px;
  margin-top: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oc-countdown-widget.oc-countdown-text-light { color: #ffffff; }
.oc-countdown-widget.oc-countdown-text-dark { color: #212529; }

.oc-countdown-title {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}

.oc-countdown-subtext {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 22px;
  opacity: 0.95;
}

.oc-countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 1rem;
}

.oc-countdown-unit {
  min-width: 85px;
  border-radius: 12px;
  padding: 16px 12px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(2px);
}

.oc-countdown-text-dark .oc-countdown-unit {
  background: rgba(255,255,255,0.5);
}

.oc-countdown-value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 6px;
}

.oc-countdown-label {
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.oc-countdown-post {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 14px;
}

.oc-countdown-link {
  margin-top: 30px;
}

.oc-countdown-link a {
  display: inline-block;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.18);
  color: inherit;
  border: 1px solid rgba(255,255,255,0.28);
}

.oc-countdown-text-dark .oc-countdown-link a {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.08);
}

.oc-countdown-link a:hover {
  text-decoration: none;
  transform: translateY(-1px);
  opacity: 0.95;
}

.oc-countdown-link.is-text-only,
.oc-countdown-link.is-text-only a {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.oc-countdown-link.is-text-only a:hover,
.oc-countdown-link.is-text-only:hover {
  transform: none;
  text-decoration: underline;
}

.oc-countdown-widget.oc-countdown-has-shadow {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.oc-countdown-widget.oc-countdown-compact .oc-countdown-title {
  font-size: 1.35rem;
}

.oc-countdown-widget.oc-countdown-compact .oc-countdown-unit {
  min-width: 82px;
  padding: 12px 10px;
}

.oc-countdown-widget.oc-countdown-compact .oc-countdown-value {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .oc-countdown-widget { padding: 22px 16px; }
  .oc-countdown-title { font-size: 1.4rem; }
  .oc-countdown-subtext { font-size: 0.95rem; margin-bottom: 18px; }
  .oc-countdown-timer { gap: 10px; }
  .oc-countdown-unit { min-width: 78px; padding: 12px 10px; }
  .oc-countdown-value { font-size: 1.45rem; }
  .oc-countdown-label { font-size: 0.75rem; }
  .oc-countdown-link a { padding: 10px 16px; }
}

.endorsement-layout-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .endorsement-layout-choices {
    grid-template-columns: 1fr 1fr;
  }
}

.endorsement-choice-card {
  display: block;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 0.9rem;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.endorsement-choice-card:hover {
  border-color: #86b7fe;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.btn-check:checked + .endorsement-choice-card {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.15);
  background: #f8fbff;
}

.endorsement-choice-title {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  color: #212529;
  margin-bottom: 0.35rem;
}

.endorsement-choice-desc {
  display: block;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #6c757d;
}

.endorsement-choice-icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 2.1rem;

  height: 2.1rem;

  border-radius: 0.6rem;

  background: #f1f3f5;

  color: #0d6efd;

  margin-bottom: 0.65rem;

  font-size: 1rem;

}

.endorsement-layout-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}

@media (min-width: 768px) {
  .endorsement-layout-choices {
    grid-template-columns: 1fr 1fr;
  }
}

.endorsement-choice-card {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: .9rem;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.endorsement-choice-card:hover {
  border-color: #86b7fe;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.btn-check:checked + .endorsement-choice-card {
  border-color: #0d6efd;
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
  background: #f8fbff;
}

.endorsement-choice-title {
  display: block;
  font-weight: 700;
  margin-bottom: .35rem;
  color: #212529;
}

.endorsement-choice-desc {
  display: block;
  font-size: .85rem;
  line-height: 1.45;
  color: #6c757d;
}

.endorsement-layout-choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}

@media (min-width: 768px) {
  .endorsement-layout-choices {
    grid-template-columns: 1fr 1fr;
  }
}

.endorsement-choice-card {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: .9rem;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.endorsement-choice-card:hover {
  border-color: #86b7fe;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.btn-check:checked + .endorsement-choice-card {
  border-color: #0d6efd;
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
  background: #f8fbff;
}

.endorsement-choice-title {
  display: block;
  font-weight: 700;
  margin-bottom: .35rem;
  color: #212529;
}

.endorsement-choice-desc {
  display: block;
  font-size: .85rem;
  line-height: 1.45;
  color: #6c757d;
}


.endorsement-style-preview {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 1rem;
  padding: 1rem;
}

.endorsement-preview-grid {
  display: grid;
  gap: 1rem;
}

.endorsement-preview-grid.columns-1 {
  grid-template-columns: 1fr;
}

.endorsement-preview-grid.columns-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .endorsement-preview-grid.columns-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.endorsement-preview-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  overflow: hidden;
}

.endorsement-preview-card-inner {
  padding: 1.1rem;
}

.endorsement-preview-badge {
  display: inline-block;
  margin: 0 0 .75rem 0;
  padding: .3rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(13,110,253,.08);
  color: #0d6efd;
}

.endorsement-preview-quote-mark {
  color: #0d6efd;
  font-size: 1.1rem;
  margin-bottom: .7rem;
}

.endorsement-preview-quote {
  font-size: .95rem;
  line-height: 1.6;
  color: #212529;
}

.endorsement-preview-meta {
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(0,0,0,.08);
}

.endorsement-preview-name {
  font-weight: 700;
  color: #212529;
}

.endorsement-preview-organization {
  margin-top: .2rem;
  color: #495057;
  font-size: .9rem;
}

.endorsement-preview-type {
  margin-top: .3rem;
  color: #6c757d;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.endorsement-preview-card.featured-highlight {
  border-color: rgba(13,110,253,.35);
  box-shadow: 0 10px 28px rgba(13,110,253,.12);
}

.endorsement-preview-card.featured-highlight::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: #0d6efd;
}

.endorsement-preview-card.campaign-highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: rgba(13,110,253,.18);
}

.endorsement-preview-card.simple-list {
  box-shadow: none;
  border-radius: .6rem;
}

.endorsement-preview-card.simple-list .endorsement-preview-card-inner {
  padding: .9rem 1rem;
}

.endorsement-preview-card.featured-spotlight {
  grid-column: 1 / -1;
}

.endorsement-preview-card.featured-spotlight .endorsement-preview-quote {
  font-size: 1.02rem;
}

.endorsement-sort-list {
  min-height: 80px;
}

.endorsement-sort-card {
  border: 1px solid rgba(0,0,0,.08);
}

.endorsement-drag-handle {
  cursor: grab;
  padding: .25rem .4rem;
}

.sortable-ghost {
  opacity: .45;
}

.sortable-chosen {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.12);
}



/* =========================================================
   Voting Information Template
   ========================================================= */

 

.oc-vi-hero {
  background: linear-gradient(135deg, var(--oc-primary, #0d3b6e) 0%, #185ea5 60%, #1a7abf 100%);
  color: #fff;
  padding: 5rem 1.5rem 4rem;
}

.oc-vi-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  font-family: var(--oc-font-heading, inherit);
}

.oc-vi-hero .lead {
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.oc-vi-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.oc-vi-hero-badge i {
  font-size: .45rem;
}

.oc-vi-section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 1rem;
}

.oc-vi-alert {
  background: #f0f4fb;
  border: 1px solid #93c5fd;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}

.oc-vi-alert i {
  color: var(--oc-accent, #163a5f);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.oc-vi-alert p {
  color: var(--oc-heading-primary, #163a5f);
  font-size: .95rem;
  margin: 0;
}

.oc-vi-step-card,
.oc-vi-info-card {
  background: #fff;
  border: 1px solid #e0ddd6;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  height: 100%;
}

.oc-vi-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f4fb;
  color: var(--oc-accent, #163a5f);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}

.oc-vi-step-card h3,
.oc-vi-info-card h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 .5rem;
  color: var(--oc-heading-primary, #163a5f);
}

.oc-vi-step-card p {
  font-size: .875rem;
  color: #666;
  margin: 0;
}

.oc-vi-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f0f4fb;
  color: var(--oc-accent, #163a5f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.oc-vi-deadline-box {
  background: #f0f4fb;
  border-radius: 10px;
  padding: 1rem .75rem;
  text-align: center;
  height: 100%;
}

.oc-vi-deadline-box span {
  font-family: var(--oc-font-heading, inherit);
  font-size: 1.6rem;
  color: var(--oc-accent, #163a5f);
  display: block;
  line-height: 1;
}

.oc-vi-deadline-box small {
  font-size: .75rem;
  color: #555;
  margin-top: 5px;
  display: block;
  line-height: 1.4;
}

.oc-vi-id-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oc-vi-id-list li {
  font-size: .875rem;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid #f0ede6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oc-vi-id-list li:last-child {
  border-bottom: none;
}

.oc-vi-id-list i {
  color: #198754;
}

.oc-vi-small-note {
  font-size: .75rem;
  color: #666;
  margin: 1rem 0 0;
}

.oc-vi-info-row {
  display: flex;
  gap: .85rem;
  margin-bottom: 1rem;
}

.oc-vi-info-row:last-child {
  margin-bottom: 0;
}

.oc-vi-info-row > i {
  color: var(--oc-accent, #163a5f);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.oc-vi-info-row strong {
  display: block;
  font-size: .85rem;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.oc-vi-info-row p {
  font-size: .82rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.oc-template-wrap[data-template-id="oc-voting-information-page"] .accordion-button {
  font-size: .95rem;
  font-weight: 600;
  background: #fff;
  color: #1a1a1a;
  box-shadow: none;
}

.oc-template-wrap[data-template-id="oc-voting-information-page"] .accordion-button:not(.collapsed) {
  color: var(--oc-accent, #163a5f);
  background: #fff;
  box-shadow: none;
}

.oc-template-wrap[data-template-id="oc-voting-information-page"] .accordion-button:focus {
  box-shadow: none;
}

.oc-template-wrap[data-template-id="oc-voting-information-page"] .accordion-item {
  border: none;
  border-bottom: 1px solid #e8e4dc;
}

.oc-template-wrap[data-template-id="oc-voting-information-page"] .accordion-item:first-child {
  border-top: 1px solid #e8e4dc;
}

.oc-template-wrap[data-template-id="oc-voting-information-page"] .accordion-body {
  font-size: .875rem;
  color: #555;
  line-height: 1.7;
  padding-top: 0;
}

.oc-vi-contact-bar {
  background: #fff;
  border: 1px solid #e0ddd6;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.oc-vi-contact-bar p {
  color: #666;
  font-size: .95rem;
  margin: 0 0 .75rem;
}

/*Save Spinner*/
.oc-global-save-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  font-weight: 700;
  color: #1f2937;
  min-width: 350px;
}
.oc-global-save-loader {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  background: url('/admin/images/page-loader.gif') center center no-repeat;
  background-size: contain;
}

.oc-global-save-box {
  animation: ocSaveAppear .15s ease-out;
}

@keyframes ocSaveAppear {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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



.oc-global-save-box div {
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
}

.oc-global-save-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
  text-align: center;
}

.oc-global-save-subtitle {
  font-size: .875rem;
  color: #6b7280;
  font-weight: 400;
  text-align: center;
}

/*Save Spinner*/
