/**
 * SIGE - Design Tokens & Base Styles
 * According to DOCUMENTO_05
 */
/* public/css/sisfeira_public.css - AGORA ArchitectUI Redesign */

:root {
  /* Brand Colors */
  --sisfeira-blue: #303092;
  --sisfeira-blue-hover: #262675;
  --sisfeira-green: #AFC335;
  --sisfeira-green-hover: #8e9e2b;

  /* Layout Colors (BitCrypto Dark Style) */
  --bg-main: #f1f4f6;
  --bg-sidebar: #1a1e2e;
  /* Navy Dark deeper */
  --sidebar-item-active: rgba(255, 255, 255, 0.08);
  --sidebar-text: rgba(255, 255, 255, 0.7);
  --bg-header: #ffffff;
  --text-main: #cacaca;
  --text-muted: #6c757d;
  --border-color: #dee2e6;

  /* Layout Config */
  --sidebar-width: 260px;
  /* Slimmer */
  --header-height: 60px;
  --radius: 0.375rem;
}

body {
  font-family: "Poppins", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  margin: 0;
  overflow-x: hidden;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 60vh;
  margin-bottom: -5px !important;
}

/* Global Reset */
body {
  font-family: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  margin: 0;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100vw;
}

/* App Container */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header (Fixed at top) */
.app-header {
  height: var(--header-height);
  background-color: var(--bg-header);
  box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03), 0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1010;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.app-header__logo {
  width: var(--sidebar-width);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  background: #0f1a44;
  transition: all 0.3s;
}

.closed-sidebar .app-header__logo {
  width: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}

.app-header__logo img {
  max-height: 50px;
}

.app-header__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

/* Main Layout */
.app-main {
  flex: 1;
  display: flex;
  margin-top: var(--header-height);
}

/* Sidebar (Fixed at left) */
.app-sidebar {
  width: var(--sidebar-width);

  background-image: url("/img/fundo_barra_02.png");
  background-size: cover;
  background-color: #172660;
  background-blend-mode: multiply;

  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  z-index: 1000;

  /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); */

  border-right: 1px solid rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;
}

.closed-sidebar .app-sidebar {
  width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
}

.scrollbar-sidebar {
  flex: 1;
  overflow-y: auto;
}

.app-sidebar__inner {
  padding: 1rem 0.75rem;
}

.app-sidebar__heading {
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin: 1.25rem 0 0.5rem 1rem;
  letter-spacing: 1px;
}

.vertical-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vertical-nav-menu li a {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  font-weight: 400;
  margin: 1px 0.5rem;
  font-size: 0.80rem;
}

.vertical-nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.vertical-nav-menu li a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 700;
}

.vertical-nav-menu li a i {
  font-size: 1.1rem;
  margin-right: 0.5rem;
  opacity: 0.7;
}

/* Accordion Specific */
.vertical-nav-menu li.mm-active>a i.metismenu-state-icon {
  transform: rotate(90deg);
}

.metismenu-state-icon {
  margin-left: auto;
  font-size: 0.7rem !important;
  opacity: 0.5 !important;
  transition: transform 0.2s;
}

/* Sidebar Footer (Fixed at bottom) */
.app-sidebar__footer {
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  width: 100%;
}

.app-sidebar__footer span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.4px;
}

/* Main Content Wrapper (Fixed Sidebar Compensation) */
.app-main__outer {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 1rem;
  min-height: calc(90vh - var(--header-height));
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.closed-sidebar .app-main__outer {
  margin-left: 0;
}

.app-main__inner {
  flex: 1;
}

/* Widgets & Header Utils (BitCrypto/ArchitectUI) */
.header-btn-lg {
  padding: 0 1.5rem;
}

.widget-content {
  padding: 0;
  display: flex;
  align-items: center;
}

.widget-content-wrapper {
  display: flex;
  flex: 1;
  position: relative;
  align-items: center;
}

.widget-content-left {
  display: flex;
  align-items: center;
}

.widget-content-right {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.widget-heading {
  font-weight: 700;
  font-size: 0.88rem;
  color: #334155;
  white-space: nowrap;
}

.widget-subheading {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

/* Page Title Section (Refined) */
.app-page-title {
  padding: 0.5rem !important;
  background: #fafbfc;
  margin: -2rem -2rem 2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}


.app-page-title .page-title-icon {
  font-size: 2rem;
  margin-right: 1.25rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  color: var(--sisfeira-blue);
}

.app-page-title h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: #111827;
  letter-spacing: -0.025em;
}

/* Form Styles (BitCrypto style) */
.form-label {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 1px solid #e5e7eb;
  padding: 0.625rem 0.875rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  color: #111827;
  transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sisfeira-blue);
  box-shadow: 0 0 0 3px rgba(48, 48, 146, 0.1);
}

/* Updated Contextual Cards */
.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 1.2rem;
  background: #fff;
}

.card-header {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.card-header h5 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-right: 5px;
}


/* Footer Styles */
.app-wrapper-footer {
  height: 50px;
  background: #fafbfc;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  margin: 2rem -2rem -2rem;
}

.app-footer {
  width: 100%;
}

.app-footer .app-footer__inner {
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive Mobile */
@media (max-width: 991.98px) {
  .app-sidebar {
    transform: translateX(-100%);
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
  }

  .app-sidebar.sidebar-mobile-open {
    transform: translateX(0);
  }

  .app-main__outer {
    margin-left: 0;
  }

  .app-header__logo {
    width: 60px;
    padding: 0;
    overflow: hidden;
  }

  .app-header__logo img {
    width: 30px;
  }

  .app-wrapper-footer {
    margin: 1rem 0 0;
  }
}

/* Cookie & Privacy Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: var(--sisfeira-blue);
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 2000;
  display: none;
  /* Hidden by default, shown via JS */
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner__text strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__actions .btn {
  background: var(--sisfeira-green) !important;
  border-color: var(--sisfeira-green);
  color: var(--sisfeira-blue);
}

.cookie-banner__actions .btn:hover,
.cookie-banner__actions .btn:focus {
  background: var(--sisfeira-green-hover) !important;
  border-color: var(--sisfeira-green-hover);
  color: var(--sisfeira-blue);
}

@media (max-width: 767.98px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.25rem;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .cookie-banner__actions {
    width: 100%;
  }
}

/* Privacy & Cookies Side Tab & Drawer */
.privacy-tab {
  position: fixed;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  background: var(--sisfeira-blue);
  color: #fff;
  padding: 1rem 0.5rem;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  z-index: 2100;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.privacy-tab:hover {
  padding-right: 0.75rem;
  background: var(--sisfeira-blue-hover);
}

.privacy-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 2200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.privacy-drawer.open {
  right: 0;
}

.privacy-drawer__header {
  padding: 1.5rem;
  background: var(--sisfeira-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-drawer__header h5 {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.privacy-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h6 {
  color: var(--sisfeira-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-main);
  text-align: justify;
}

.privacy-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2150;
  display: none;
  backdrop-filter: blur(2px);
}

.privacy-drawer__overlay.open {
  display: block;
}

@media (max-width: 575.98px) {
  .privacy-drawer {
    width: 100%;
    right: -100%;
  }
}

#collapseContratos>li>a {
  display: block;
  white-space: normal;
  line-height: 1.15;
}

#collapseContratos .contract-edition-line {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}

#collapseContratos .contract-event-line {
  display: block;
  font-size: 0.68rem;
  opacity: 0.9;
  margin-top: 2px;
}

/* ==========================================================================
   Administrative Form Layout Refinements (Clean Standard)
   Standardizing for a sleek, distributed, and professional aesthetic (Tela 2).
   ========================================================================== */

/* Page Background & Layout */
.app-main__outer {
  background-color: #f1f4f6 !important;
}

/* Page Title Section */
.app-page-title {
  background: transparent !important;
  border-bottom: none !important;

  padding: 0.5rem !important;
  margin: 0 0 1rem 0 !important;
}

.app-page-title .page-title-icon {
  background: transparent !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  margin-right: 1rem !important;
}

.app-page-title h1 {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* Card Cleanliness (Standard Pattern) */
.card {
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.card-header {
  background-color: #ffffff !important;
  border-bottom: 1px solid #f3f4f6 !important;
  padding: 0.75rem 1.25rem !important;
}

.card-header h5,
.card-header h6 {
  color: #334155 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

.card-body {
  padding: 1.25rem !important;
}

/* Input Fields Refinement */
.form-label {
  font-size: 0.70rem !important;
  font-weight: 700 !important;
  color: #475569 !important;
  text-transform: uppercase !important;
  margin-bottom: 0.35rem !important;
}

.form-control,
.form-select {
  border: 1px solid #d1d5db !important;
  border-radius: 6px !important;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.85rem !important;
  color: #1e293b !important;
}

.form-control:focus,
.form-select:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1) !important;
}

.form-text {
  font-size: 0.7rem !important;
  margin-top: 0.25rem !important;
}

/* Form Action Bar */
.form-action-bar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Search Box Fixes */
.search-box .form-control {
  padding-left: 2.5rem !important;
  /* Forces enough space for the icon */
  background-color: #f8fafc !important;
}

.search-box .bi-search {
  font-size: 0.85rem;
  color: #94a3b8 !important;
}

/* Contract Progress Stepper */
.contract-stepper-container {
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 0.75rem;
}

.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
}

.stepper-wrapper::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #e5e7eb;
  z-index: 1;
}

.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  z-index: 2;
}

.stepper-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #9ca3af;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stepper-item.completed .stepper-node {
  background: var(--sisfeira-green);
  border-color: var(--sisfeira-green);
  color: white;
}

.stepper-item.active .stepper-node {
  background: var(--sisfeira-blue);
  border-color: var(--sisfeira-blue);
  color: white;
  box-shadow: 0 0 0 4px rgba(48, 48, 146, 0.1);
}

.stepper-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.5px;
}

.stepper-item.completed .stepper-label,
.stepper-item.active .stepper-label {
  color: #374151;
}

.stepper-progress-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stepper-progress-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--sisfeira-blue);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.stepper-progress-text h6 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
}

.stepper-progress-text p {
  margin: 0;
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.2;
}

/* Animations */
.stepper-item.active .stepper-node i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}


.table-light {
  --bs-table-color: #303030;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #c6c7c8;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #1f1d1d;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #1f1d1d;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #303030;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
  font-size: 0.75rem;
}

.table tbody td {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  font-size: 0.825rem;
}

.table thead th {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  font-size: 0.75rem !important;
}

.border-bottom {
  border-bottom: none !important;
}


.b-p-5 {
  padding: 05px;
}

.b-p-10 {
  padding: 10px;
}

.b-p-15 {
  padding: 15px;
}

.b-p-20 {
  padding: 20px;
}

.b-p-25 {
  padding: 25px;
}

.b-p-30 {
  padding: 30px;
}

.b-p-35 {
  padding: 35px;
}

.b-p-40 {
  padding: 40px;
}

.b-p-45 {
  padding: 45px;
}

.b-p-50 {
  padding: 50px;
}

.b-p-55 {
  padding: 55px;
}

.b-p-60 {
  padding: 60px;
}

.b-p-65 {
  padding: 65px;
}

.b-p-70 {
  padding: 70px;
}

.b-p-75 {
  padding: 75px;
}

.b-p-80 {
  padding: 80px;
}

.b-p-85 {
  padding: 85px;
}

.b-p-90 {
  padding: 90px;
}

.b-p-95 {
  padding: 95px;
}

.b-p-100 {
  padding: 100px;
}

#precheckSummary .h4,
h4 {
  font-size: 1.2rem !important;
}

#precheckErrors mb-1 {
  margin-bottom: 0rem !important;
  font-size: 0.85rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.card-body {
  padding: 1rem !important;
}

.vertical-nav-menu li a {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.2rem !important;
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  font-weight: 400;
  margin: 1px 0.5rem;
  font-size: 0.80rem;
}

#sidebar-accordion li::marker {
  content: none;
}


.text-primary-strong {
  color: #1d4ed8;
}

.gov-card {
  background: #f8f9fb;
  border: 1px solid #e6eaef;
  border-bottom: 5px solid #47AC46 !important;
  border-right: 5px solid #47AC46 !important;
  border-radius: 12px !important;
}

.gov-card-header {
  border-bottom: 1px solid #e1e6ec;
}

.gov-title {
  color: #0b1f3a;
  letter-spacing: 0.2px;
}

.gov-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.gov-lead {
  color: #334155;
  line-height: 1.1;
  font-size: 0.95rem;
}

.gov-section-title {
  font-weight: 700;
  color: #0f2a4a;
  margin-bottom: 0.5rem;
}

.gov-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: #334155;
  font-size: 0.95rem;
}

.gov-list li {
  margin-bottom: 0.5rem;
}


/* ==========================================================================
   Preview Mode UI (Premium Floating Banner)
   ========================================================================== */
.preview-banner-floating {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 10px 24px;
  background: rgba(255, 193, 7, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 18px;
  animation: previewSlideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}

@keyframes previewSlideDown {
  from {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.preview-banner-floating .preview-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.preview-banner-floating .preview-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
}

.preview-banner-floating .preview-user {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
}

.preview-banner-floating .btn-stop-preview {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview-banner-floating .btn-stop-preview:hover {
  background: #333;
  transform: scale(1.05);
  color: #fff;
}

.preview-iframe-container {
  width: 100%;
  height: calc(100vh - 0px);
  border: none;
  background: #fff;
}

.modal-fullscreen-preview .modal-content {
  border: none;
  border-radius: 0;
  background: #f1f4f6;
}

.modal-fullscreen-preview .modal-header {
  display: none;
  /* Banner handles info/stop */
}