/* Base auth form layout */
.ie-form {
  max-width: 400px;
  width: 100%;
  display: grid;
  gap: 12px;
}

/* Error messages */
.ie-error {
  color: #c00;
  font-size: 14px;
}

.ie-error__list {
  margin: 0;
  padding-left: 18px;
}

/* Form fields */
.ie-field {
  display: grid;
  gap: 4px;
}

.ie-field__label {
  font-size: 14px;
}

/* Inputs */
.ie-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.ie-input:focus {
  outline: none;
  border-color: #0CC0DF;
  box-shadow: 0 0 0 1px rgba(12, 192, 223, 0.3);
}

/* Radios / role selector */
.ie-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.ie-fieldset__legend {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ie-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

/* Buttons */
.ie-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
}

.ie-btn--primary {
  background: #111;
  color: #fff;
}

.ie-btn--primary:hover {
  background: #0CC0DF;
  color: #000;
}

/* Form note (login/register link) */
.ie-form__note {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}

/* Optional small tweaks per form type if needed later */
.ie-form--register {}
.ie-form--login {}

.ie-form,
.ie-form--login,
.ie-form--register {
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
}

/* ===========================
   Dashboard layout
   =========================== */

.ie-dash {
  max-width: 780px;             /* wider but still centered */
  margin: 0 auto;
  font-family: 'Open Sans', system-ui, sans-serif;
  padding: 0 12px;
}

.ie-dash__card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: none;
  padding: 20px 24px;
}

.ie-dash__title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.ie-dash__meta {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

/* Make the BALANCE row look more important
   (second .ie-dash__meta in the card) */
.ie-dash__card .ie-dash__meta:nth-of-type(2) {
  background: #f3f5f9;
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.ie-dash__card .ie-dash__meta:nth-of-type(2) strong {
  color: #000;
  font-weight: 700;
}

.ie-dash__pending-coins {  
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e4e6eb;
    color: #000;
    font-size: 12px;
    font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: none; }

.ie-dash__pending-coins:hover {
  color: #000;
}
.ie-dash__pending-coins:visited {
  color: #000;
}


/* Inline "Add coins" pill link – make it look like a real CTA */

.ie-dash__link-inline {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

.ie-dash__link-inline:hover {
  color: #fff;
}

.ie-dash__link-inline:visited {
  color: #fff;
}

/* Actions */

.ie-dash__actions {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  grid-template-columns: 1fr;       /* 1 column by default */
}

/* On wider screens, put the main action buttons side by side */
@media (min-width: 600px) {
  .ie-dash__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ie-dash__link {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0CC0DF;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(12, 192, 223, 0.4);
  box-shadow: none;
}

.ie-dash__link:hover {
  filter: brightness(1.05);
  color: #000;
}

/* Status blocks (VIP / Diamond / errors) */

.ie-dash-status {
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
  font-size: 13px;
  line-height: 1.4;
  color: #000;
  display: grid;
  gap: 8px;
}

.ie-dash-status--error {
  border-color: #e55e5e;
}

.ie-dash-status__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ie-dash-status__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #0CC0DF;
  font-size: 11px;
  font-weight: 600;
  color: #000;
}

/* Bigger "until" text so it's readable */
.ie-dash-status__until {
  color: #222;
  font-size: 13px;
}

.ie-dash-status__text {
  color: #444;
}

.ie-dash-status__btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 192, 223, 0.4);
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(12, 192, 223, 0.15);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.ie-dash-status__btn:hover {
  filter: brightness(1.05);
  color: #000;
}

/* "Not Verified" note next to verify button (independent escort block) */

.ie-dash-status__verify-note {
  display: inline-block;
  margin-right: 6px;
  font-size: 11px;
  font-weight: 400;
  color: #444; /* normal text color */
}

/* Message line for coin upgrades */

#ie-coins-upgrade-message {
  margin-top: 10px;
}

/* Roster / verification indicator (under status) */

.ie-roster-verify {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
  color: #c00;          /* default = needs verification (red link text) */
}

.ie-roster-verify--ok {
  color: #18c36b;       /* verified = green */
}

.ie-roster-verify a {
  text-decoration: none;
  color: inherit;       /* same red/green as label */
}

.ie-roster-verify a:hover {
  opacity: 0.9;
}

/* "Not verified" text in roster – normal text color */

.ie-roster-verify__note {
  margin-right: 4px;
  font-size: 11px;
  font-weight: 400;
  color: #444;
}

/* Diamond until line in roster – readable */

.ie-roster-diamond-until {
  font-size: 13px;
  color: #555;
  margin-top: 4px;
}

/* Footer bits */

.ie-dash__logout {
  display: inline-block;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  margin-top: 16px;
}

.ie-dash__logout:hover {
  color: #000;
}

.ie-dash__note {
  margin: 16px 0 16px;
  font-size: 12px;
  line-height: 1.4;
  color: #777;
}

/* Sections & roster */

.ie-dash-section {
  margin-top: 24px;
}

.ie-dash-section__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

.ie-dash-section__text {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* Roster grid: 1 col on small, 2+ on wider */

.ie-roster {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* If there's only ONE escort, don't let the card stretch full width */
.ie-roster.ie-roster--single {
  max-width: 520px;
  margin: 0 auto;
}

/* Roster cards */

.ie-roster-card {
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  gap: 16px;
  padding: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* HIDE the diamond label in roster completely (if any legacy ribbons exist) */
.ie-roster-card .gof-ribbon {
  display: none !important;
}

/* Thumbnail */

.ie-roster-thumb {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ie-roster-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ie-roster-thumb__placeholder {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 8px;
}

/* Main text */

.ie-roster-main {
  flex: 1 1 auto;
  min-width: 180px;
}

.ie-roster-name {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.ie-roster-tag {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  margin-top: 2px;
}

.ie-roster-status {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
  margin-top: 6px;
}

.ie-roster-status--published strong{
  color:#19a34a; /* green */
}

/* Actions */

.ie-roster-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}

.ie-roster-btn {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
}

.ie-roster-btn--primary {
  background: #0CC0DF;
  color: #000;
  border: 1px solid rgba(12, 192, 223, 0.4);
  box-shadow: none;
}

.ie-roster-btn--primary:hover {
  filter: brightness(1.05);
  color: #000;
}

.ie-roster-btn--danger {
  background: #fff;
  color: #c00;
  border: 1px solid rgba(200, 0, 0, 0.3);
  box-shadow: 0 4px 14px rgba(200, 0, 0, 0.15);
}

.ie-roster-btn--outline {
  background: #fff;
  color: #000;
  border: 1px solid rgba(12, 192, 223, 0.4);
  box-shadow: 0 4px 14px rgba(12, 192, 223, 0.15);
}

/* Small tweaks on mobile */

@media (max-width: 600px) {
  .ie-dash__card {
    padding: 16px 14px;
  }
}

/* ===========================
   Escort Listing Form
   =========================== */

.ie-listing {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Open Sans', system-ui, sans-serif;
}

.ie-listing__notice {
  max-width: 480px;
  margin: 20px auto;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

.ie-listing__back {
  margin: 14px 0 12px;
}

.ie-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #0CC0DF;
  font-weight: 600;
  font-size: 14px;
}

.ie-back-link:hover {
  opacity: 0.9;
}

.ie-listing__card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  padding: 20px 24px;
}

.ie-listing__title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.ie-listing__intro {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

/* Alerts */

.ie-alert {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.ie-alert--error {
  color: #c00;
  background: #ffecec;
  border: 1px solid #ffb7b7;
}

.ie-alert--success {
  color: #0a0;
  background: #eaffea;
  border: 1px solid #b7ffb7;
}

/* Form layout */

.ie-listing-form {
  display: grid;
  gap: 14px;
}

.ie-field {
  display: grid;
  gap: 4px;
  font-size: 14px;
}

.ie-field__label {
  font-weight: 600;
}

/* Inputs / selects reuse previous styles when possible */

.ie-input,
.ie-textarea,
.ie-select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.ie-textarea {
  min-height: 120px;
  resize: vertical;
}

.ie-input:focus,
.ie-textarea:focus,
.ie-select:focus {
  outline: none;
  border-color: #0CC0DF;
  box-shadow: 0 0 0 1px rgba(12, 192, 223, 0.3);
}

.ie-input-file {
  font-size: 13px;
}

/* Two-column rows */

.ie-field-row {
  display: grid;
  gap: 12px;
}

.ie-field-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .ie-field-row--2 {
    grid-template-columns: 1fr;
  }
}

/* Flags / checkboxes */

.ie-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.ie-flag {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hints */

.ie-hint {
  font-size: 12px;
  opacity: 0.7;
}

/* Media blocks */

.ie-media {
  display: grid;
  gap: 16px;
}

.ie-media__block {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

/* Featured image */

.ie-listing__featured-img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Gallery */

.ie-gallery-hint {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}

.ie-g-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ie-g-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ccc;
  background: #000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ie-g-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ie-del-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 0;
  font-size: 11px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 999px;
  cursor: pointer;
}

/* Upload blocks */

.ie-gallery-upload {
  display: grid;
  gap: 4px;
}

.ie-gallery-upload__label,
.ie-video-upload__label {
  font-size: 13px;
  font-weight: 600;
}

/* Video */

.ie-video-preview {
  max-width: 200px;
}

.ie-video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  background: #000;
}

/* Save button */

.ie-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
}

.ie-btn--accent {
  padding: 12px;
  background: #0CC0DF;
  color: #000;
  font-size: 14px;
  border: 1px solid rgba(12, 192, 223, 0.4);
  box-shadow: 0 4px 14px rgba(12, 192, 223, 0.4);
}

.ie-btn--accent:hover {
  filter: brightness(1.05);
}

/* Bottom note */

.ie-listing__note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #777;
  text-align: center;
}

/* ===========================
   Agency Profile Form
   =========================== */

.ie-agency-wrap {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Open Sans', system-ui, sans-serif;
}

.ie-agency-notice {
  max-width: 480px;
  margin: 20px auto;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

.ie-agency-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  padding: 20px 24px;
}

/* Top bar / back link */

.ie-agency-topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.ie-agency-back-link {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #000;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.ie-agency-back-link:hover {
  background: #ececec;
}

/* Headings / intro */

.ie-agency-title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.ie-agency-intro {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

/* Alerts */

.ie-agency-alert {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.ie-agency-alert--error {
  color: #c00;
  background: #ffecec;
  border: 1px solid #ffb7b7;
}

.ie-agency-alert--success {
  color: #0a0;
  background: #eaffea;
  border: 1px solid #b7ffb7;
}

/* Form */

.ie-agency-form {
  display: grid;
  gap: 14px;
}

.ie-agency-field {
  display: grid;
  gap: 4px;
  font-size: 14px;
}

.ie-agency-label {
  font-weight: 600;
}

/* Inputs / textarea / select */

.ie-agency-input,
.ie-agency-textarea,
.ie-agency-select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.ie-agency-textarea {
  min-height: 120px;
  resize: vertical;
}

.ie-agency-input:focus,
.ie-agency-textarea:focus,
.ie-agency-select:focus {
  outline: none;
  border-color: #0CC0DF;
  box-shadow: 0 0 0 1px rgba(12, 192, 223, 0.3);
}

/* 2-column rows */

.ie-agency-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 640px) {
  .ie-agency-row-2 {
    grid-template-columns: 1fr;
  }
}

/* Hints */

.ie-agency-hint {
  font-size: 12px;
  opacity: 0.7;
}

/* Featured image */

.ie-agency-featured-block {
  font-size: 14px;
}

.ie-agency-hero-wrap {
  max-width: 320px;
}

.ie-agency-hero-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.ie-agency-file {
  font-size: 13px;
}

/* Submit button */

.ie-agency-submit {
  padding: 12px;
  border: 0;
  border-radius: 999px;
  background: #0CC0DF;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(12, 192, 223, 0.4);
  border: 1px solid rgba(12, 192, 223, 0.4);
  font-family: inherit;
}

.ie-agency-submit:hover {
  filter: brightness(1.05);
}

/* Bottom note */

.ie-agency-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #777;
  text-align: center;
}

