:root{
  color-scheme: light;
  --ge-bg:#0b1020;
  --ge-bg-2:#0f172a;
  --ge-surface:#ffffff;
  --ge-surface-2:#f8fafc;
  --ge-text:#0f172a;
  --ge-muted:#64748b;
  --ge-border:rgba(15,23,42,.10);
  --ge-primary:#4f46e5;
  --ge-primary-600:#4338ca;
  --ge-success:#16a34a;
  --ge-warning:#f59e0b;
  --ge-danger:#ef4444;
  --ge-radius:16px;
  --ge-radius-sm:12px;
  --ge-ring:0 0 0 .25rem rgba(79,70,229,.16);
  --ge-shadow:0 18px 55px rgba(17,24,39,.10);
  --ge-shadow-sm:0 10px 26px rgba(17,24,39,.08);
  --ge-topbar-h:64px;
  --ge-sidebar-w:288px;
  --ge-sidebar-w-collapsed:88px;
  --ge-content-max:1240px;
  --ge-ease:cubic-bezier(.2,.8,.2,1);
  --ge-dur:180ms;
}

*, *::before, *::after{ box-sizing:border-box; }

body.ge-producer{
  color:var(--ge-text);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(79,70,229,.22), transparent 60%),
    radial-gradient(900px 600px at 110% 10%, rgba(22,163,74,.12), transparent 55%),
    radial-gradient(900px 600px at 50% 120%, rgba(245,158,11,.10), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 55%, #f8fafc 100%);
  background-attachment: fixed;
}

body.ge-producer.ge-new{
  font-family: "Public Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ge-producer a{ text-decoration:none; }
.ge-producer a:hover{ text-decoration:none; }

.ge-page{
  min-width: 0;
}

.ge-producer .btn-icon{
  width: 44px;
  height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0;
  border-radius: 14px;
}

.ge-producer .btn-xs{
  padding: .25rem .5rem;
  font-size: .75rem;
  border-radius: 10px;
}

.ge-producer .divider{
  position:relative;
  text-align:center;
}

.ge-producer .divider::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:1px;
  background: rgba(229,231,235,.95);
  transform: translateY(-50%);
}

.ge-producer .divider .divider-text{
  position:relative;
  display:inline-flex;
  padding: 0 .75rem;
  background: rgba(255,255,255,.92);
  color: rgba(15,23,42,.62);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,.95);
}

.ge-producer .user-profile-header-banner{
  border-bottom: 1px solid rgba(229,231,235,.95);
  background: rgba(248,250,252,.92);
}

.ge-producer .user-profile-header{
  padding-bottom: 18px;
}

.ge-producer .user-profile-img{
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 999px;
  background: rgba(226,232,240,.85);
}

.ge-producer .mt-n5{
  margin-top: -3rem !important;
}

.ge-producer img{
  max-width:100%;
  height:auto;
}

.ge-producer .avatar{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px;
  height: 40px;
}

.ge-producer .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ge-producer .avatar-initial{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  height: 100%;
  font-weight: 800;
}

.ge-producer .card{
  border:1px solid var(--ge-border);
  border-radius:var(--ge-radius);
  box-shadow:var(--ge-shadow);
}

.ge-producer .table-responsive{
  border-radius: var(--ge-radius);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(229,231,235,.95);
  background: rgba(255,255,255,.92);
  width: 100%;
  max-width: 100%;
}

.ge-producer .table-responsive > table,
.ge-producer .table-responsive > .table{
  min-width: 100%;
  width: max-content;
}

.ge-producer .table{
  margin-bottom: 0;
}

.ge-producer .table thead th{
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(15,23,42,.62);
  background: rgba(248,250,252,.92);
}

.ge-producer .nav-tabs{
  border-bottom: 1px solid rgba(229,231,235,.95);
  gap: 8px;
}

.ge-producer .nav-tabs .nav-link{
  border: 1px solid rgba(229,231,235,.95);
  border-radius: 999px;
  padding: .5rem .9rem;
  color: rgba(15,23,42,.70);
  background: rgba(255,255,255,.75);
  transition: background var(--ge-dur) var(--ge-ease), border-color var(--ge-dur) var(--ge-ease);
}

.ge-producer .nav-tabs .nav-link:hover{
  background: rgba(79,70,229,.06);
  border-color: rgba(79,70,229,.22);
  color: rgba(15,23,42,.85);
}

.ge-producer .nav-tabs .nav-link.active{
  background: rgba(79,70,229,.12);
  border-color: rgba(79,70,229,.22);
  color: var(--ge-primary);
}

.ge-producer .card-header{
  border-bottom:1px solid rgba(229,231,235,.8);
  background:linear-gradient(180deg,rgba(255,255,255,1),rgba(255,255,255,.92));
}

.ge-producer .btn{
  border-radius:12px;
}

.ge-producer .form-control,
.ge-producer .form-select,
.ge-producer .input-group-text{
  border-radius: 14px;
  border-color: rgba(229,231,235,.95);
}

.ge-producer .input-group-text{
  background: rgba(248,250,252,.92);
}

.ge-producer .form-control:focus,
.ge-producer .form-select:focus{
  border-color: rgba(79,70,229,.45);
  box-shadow: var(--ge-ring);
}

.ge-producer .badge{
  border-radius: 999px;
}

.ge-producer .btn-primary,
.ge-producer .bg-primary{
  background-color:var(--ge-primary) !important;
  border-color:var(--ge-primary) !important;
}

body.ge-producer.ge-new .btn-primary{
  background-image: linear-gradient(135deg, rgba(79,70,229,1), rgba(124,58,237,1)) !important;
  border-color: rgba(79,70,229,1) !important;
  box-shadow: 0 10px 20px rgba(79,70,229,.18);
}

.ge-producer .btn-primary:hover,
.ge-producer .btn-primary:focus{
  background-color:var(--ge-primary-600) !important;
  border-color:var(--ge-primary-600) !important;
}

body.ge-producer.ge-new .btn-primary:hover,
body.ge-producer.ge-new .btn-primary:focus{
  filter: brightness(.98);
  box-shadow: 0 16px 30px rgba(79,70,229,.20);
}

.ge-producer .btn-outline-primary{
  color:var(--ge-primary) !important;
  border-color:rgba(79,70,229,.35) !important;
}

.ge-producer .btn-outline-primary:hover,
.ge-producer .btn-outline-primary:focus{
  color:#fff !important;
  background-color:var(--ge-primary) !important;
  border-color:var(--ge-primary) !important;
}

.ge-producer .bg-label-primary{ background: rgba(79,70,229,.12) !important; color: rgba(79,70,229,.95) !important; }
.ge-producer .bg-label-success{ background: rgba(22,163,74,.12) !important; color: rgba(22,163,74,.95) !important; }
.ge-producer .bg-label-danger{ background: rgba(239,68,68,.12) !important; color: rgba(127,29,29,.95) !important; }
.ge-producer .bg-label-warning{ background: rgba(245,158,11,.16) !important; color: rgba(146,64,14,.95) !important; }
.ge-producer .bg-label-info{ background: rgba(2,132,199,.12) !important; color: rgba(3,105,161,.95) !important; }
.ge-producer .bg-label-secondary{ background: rgba(107,114,128,.12) !important; color: rgba(55,65,81,.90) !important; }
.ge-producer .bg-label-dark{ background: rgba(15,23,42,.10) !important; color: rgba(15,23,42,.92) !important; }

.ge-producer .btn-label-primary{ background: rgba(79,70,229,.12); color: rgba(79,70,229,.95); border-color: rgba(79,70,229,.18); }
.ge-producer .btn-label-success{ background: rgba(22,163,74,.12); color: rgba(22,163,74,.95); border-color: rgba(22,163,74,.18); }
.ge-producer .btn-label-danger{ background: rgba(239,68,68,.12); color: rgba(127,29,29,.95); border-color: rgba(239,68,68,.18); }
.ge-producer .btn-label-warning{ background: rgba(245,158,11,.16); color: rgba(146,64,14,.95); border-color: rgba(245,158,11,.22); }
.ge-producer .btn-label-info{ background: rgba(2,132,199,.12); color: rgba(3,105,161,.95); border-color: rgba(2,132,199,.18); }
.ge-producer .btn-label-secondary{ background: rgba(107,114,128,.12); color: rgba(55,65,81,.90); border-color: rgba(107,114,128,.18); }
.ge-producer .btn-label-dark{ background: rgba(15,23,42,.10); color: rgba(15,23,42,.92); border-color: rgba(15,23,42,.14); }

.ge-producer .btn-label-primary:hover,
.ge-producer .btn-label-success:hover,
.ge-producer .btn-label-danger:hover,
.ge-producer .btn-label-warning:hover,
.ge-producer .btn-label-info:hover,
.ge-producer .btn-label-secondary:hover,
.ge-producer .btn-label-dark:hover{
  filter: brightness(.98);
}

.ge-producer .form-control,
.ge-producer .form-select,
.ge-producer .input-group-text{
  border-radius:12px;
  border-color:rgba(229,231,235,.9);
}

.ge-producer .form-control:focus,
.ge-producer .form-select:focus{
  border-color:rgba(79,70,229,.55);
  box-shadow:var(--ge-ring);
}

.ge-producer .badge{
  border-radius:999px;
}

.ge-producer .bg-label-primary{ background:rgba(79,70,229,.10) !important; color:var(--ge-primary) !important; }
.ge-producer .bg-label-success{ background:rgba(22,163,74,.12) !important; color:var(--ge-success) !important; }
.ge-producer .bg-label-warning{ background:rgba(245,158,11,.16) !important; color:#92400e !important; }
.ge-producer .bg-label-danger{ background:rgba(220,38,38,.12) !important; color:var(--ge-danger) !important; }
.ge-producer .bg-label-info{ background:rgba(2,132,199,.12) !important; color:#0369a1 !important; }
.ge-producer .bg-label-secondary{ background:rgba(107,114,128,.14) !important; color:#374151 !important; }

.ge-producer .table{
  color:inherit;
}

.ge-producer .table thead th{
  background:rgba(249,250,251,.9);
  border-bottom:1px solid rgba(229,231,235,.9);
  color:#374151;
  font-weight:600;
}

.ge-producer .table td,
.ge-producer .table th{
  border-color:rgba(229,231,235,.7);
}

.ge-producer .layout-navbar{
  background:rgba(255,255,255,.92) !important;
  border-bottom:1px solid rgba(229,231,235,.85);
  backdrop-filter:saturate(140%) blur(10px);
}

.ge-producer .layout-menu-horizontal{
  background:rgba(255,255,255,.92) !important;
  border-bottom:1px solid rgba(229,231,235,.85);
}

.ge-producer .menu-horizontal .menu-inner{
  gap:.25rem;
}

.ge-producer .menu-horizontal .menu-item > .menu-link{
  border-radius:12px;
  padding:.6rem .85rem;
}

.ge-producer .menu-horizontal .menu-item > .menu-link:hover{
  background:rgba(79,70,229,.06);
}

.ge-producer .menu-horizontal .menu-item.active > .menu-link,
.ge-producer .menu-horizontal .menu-item.open > .menu-link{
  background:rgba(79,70,229,.10);
  color:var(--ge-primary);
}

.ge-producer .content-wrapper{ background:transparent; }

.ge-producer .container-xxl.container-p-y{
  padding-top:1rem;
  padding-bottom:1rem;
}

.ge-producer .content-footer{
  border-top:1px solid rgba(229,231,235,.85);
  background:rgba(255,255,255,.85);
}

.ge-producer .modal-content{
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:0 24px 70px rgba(2,6,23,.18);
  overflow:hidden;
}

.ge-producer .modal-header,
.ge-producer .modal-footer{
  border-color: rgba(15,23,42,.10);
}

.ge-producer .modal-header{
  background: linear-gradient(180deg, rgba(79,70,229,.10), rgba(255,255,255,0));
}

.ge-producer .offcanvas{
  border-left:1px solid rgba(15,23,42,.10);
}

.ge-producer .offcanvas-header{
  border-bottom:1px solid rgba(15,23,42,.10);
}

.ge-producer .dropdown-menu{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 22px 60px rgba(2,6,23,.16);
  padding: 8px;
}

.ge-producer .dropdown-item{
  border-radius: 12px;
  padding: 10px 12px;
}

.ge-producer .dropdown-item:hover,
.ge-producer .dropdown-item:focus{
  background: rgba(79,70,229,.08);
}

.ge-producer .modal-overlay{
  display:none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(2,6,23,.55);
  align-items: center;
  justify-content: center;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.ge-producer .modal-overlay .modal-content{
  width: min(520px, 100%);
  margin: 0;
  padding: 20px 20px;
  text-align: left;
}

.ge-producer .modal-overlay .modal-close{
  color: rgba(15,23,42,.55);
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.ge-producer .modal-overlay .modal-close:hover{
  color: rgba(15,23,42,.92);
  cursor: pointer;
}

body.ge-producer.ge-auth{
  min-height: 100vh;
}

body.ge-producer.ge-auth .authentication-wrapper.authentication-cover{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
}

body.ge-producer.ge-auth .authentication-inner{
  width: 100%;
  max-width: 1140px;
}

body.ge-producer.ge-auth .authentication-card{
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 28px 80px rgba(2,6,23,.14);
  width: 100%;
  max-width: 460px;
  margin-left:auto;
  margin-right:auto;
  overflow:hidden;
}

body.ge-producer.ge-auth .auth-illustration-col{
  display:flex;
  align-items:center;
  justify-content:center;
}

body.ge-producer.ge-auth .ge-auth-illustration{
  max-width: 720px;
}

@media (min-width: 992px){
  body.ge-producer.ge-auth .authentication-inner{
    max-width: 1240px;
  }

  body.ge-producer.ge-auth .authentication-card{
    max-width: 540px;
  }

  body.ge-producer.ge-auth .ge-auth-illustration{
    max-width: 560px;
  }
}

@media (min-width: 1200px){
  body.ge-producer.ge-auth .authentication-inner{
    max-width: 1320px;
  }

  body.ge-producer.ge-auth .authentication-card{
    max-width: 580px;
  }

  body.ge-producer.ge-auth .ge-auth-illustration{
    max-width: 520px;
  }
}

body.ge-producer.ge-auth .app-brand img{
  max-height: 52px;
  width: auto;
}

body.ge-producer.ge-auth .btn-primary{
  padding-top: .9rem;
  padding-bottom: .9rem;
}

body.ge-producer.ge-auth #errorModal .modal-header{
  background: rgba(239,68,68,.10);
  color: rgba(127,29,29,.95);
}

.ge-producer .ge-cover-img{
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}

.ge-producer .ge-avatar-img{
  border: 3px solid rgba(255,255,255,.95);
}

.ge-producer .ge-break-all{ word-break: break-all; }
.ge-producer .ge-truncate-100{ max-width: 100px; }

.ge-producer .modal-overlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  background: rgba(15,23,42,.55);
  z-index: 1090;
}

.ge-producer .modal-overlay.is-open{
  display:flex;
}

.ge-producer .modal-content{
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  border: 1px solid rgba(229,231,235,.95);
  background: rgba(255,255,255,.98);
  box-shadow: 0 26px 80px rgba(2,6,23,.18);
  padding: 22px 22px;
  position:relative;
}

.ge-producer .modal-close{
  position:absolute;
  top: 10px;
  right: 14px;
  width: 38px;
  height: 38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,.95);
  background: rgba(255,255,255,.95);
  color: rgba(15,23,42,.85);
  cursor:pointer;
  line-height: 1;
  font-size: 22px;
  transition: background var(--ge-dur) var(--ge-ease), border-color var(--ge-dur) var(--ge-ease);
}

.ge-producer .modal-close:hover{
  background: rgba(79,70,229,.06);
  border-color: rgba(79,70,229,.22);
}

.ge-producer .lift{
  transition:transform .15s ease, box-shadow .15s ease;
}

.ge-producer .lift:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(17,24,39,.10);
}

.ge-producer .dataTables_wrapper .dataTables_filter input,
.ge-producer .dataTables_wrapper .dataTables_length select{
  border-radius:12px;
  border:1px solid rgba(229,231,235,.9);
  padding:.45rem .6rem;
}

.ge-producer .dataTables_wrapper .dataTables_paginate .paginate_button{
  border-radius:10px !important;
}

.ge-producer .dataTables_scroll,
.ge-producer .dataTables_scrollBody{
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}


@media (max-width: 576px){
  .ge-producer .container-xxl{ padding-left:12px; padding-right:12px; }
  .ge-producer .card{ box-shadow:var(--ge-shadow-sm); }
  .ge-producer .navbar-nav-right{ gap:.25rem; }

  body.ge-producer.ge-auth .authentication-wrapper.authentication-cover{
    align-items:flex-start;
    padding: 12px;
  }

  body.ge-producer.ge-auth .authentication-card{
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 52px rgba(2,6,23,.16);
  }

  body.ge-producer.ge-auth .app-brand img{
    max-height: 44px;
  }

  body.ge-producer.ge-auth .ge-auth-illustration{
    max-width: 320px;
  }
}

.ge-shell{
  min-height:100vh;
  width:100%;
  display:grid;
  grid-template-columns: 1fr;
  grid-template-rows: var(--ge-topbar-h) 1fr;
  grid-template-areas:
    "topbar"
    "main";
}

.ge-shell,
.ge-sidebar,
.ge-topbar,
.ge-nav__link,
.ge-user{
  transition: background var(--ge-dur) var(--ge-ease), border-color var(--ge-dur) var(--ge-ease), box-shadow var(--ge-dur) var(--ge-ease);
}

@media (min-width: 992px){
  .ge-shell{
    grid-template-columns: var(--ge-sidebar-w) 1fr;
    grid-template-areas:
      "topbar topbar"
      "sidebar main";
  }

  .ge-shell.is-collapsed{
    grid-template-columns: var(--ge-sidebar-w-collapsed) 1fr;
  }

  .ge-shell.is-collapsed .ge-sidebar{
    padding: 12px 10px;
  }

  .ge-shell.is-collapsed .ge-nav__link{
    justify-content:center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .ge-shell.is-collapsed .ge-nav__link span{
    display:none;
  }

  .ge-shell.is-collapsed .ge-nav__link i{
    font-size: 1.35rem;
  }

  .ge-shell.is-collapsed .ge-nav__divider{
    margin: 12px 0;
  }
}

.ge-topbar{
  grid-area: topbar;
  position: sticky;
  top: 0;
  z-index: 1030;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 14px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(229,231,235,.9);
  backdrop-filter: saturate(140%) blur(10px);
  min-height: var(--ge-topbar-h);
}

@media (max-width: 991.98px){
  .ge-topbar{
    padding: 0 12px;
  }
  
  .ge-topbar .ge-brand{
    flex: 1;
    justify-content: center;
    margin: 0 -44px 0 0;
  }
  
  .ge-topbar .ge-brand img{
    height: 28px;
  }
}

.ge-topbar__left,
.ge-topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
}

.ge-iconbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius: 12px;
  border:1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.9);
  color: var(--ge-text);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ge-iconbtn:hover{
  background: rgba(79,70,229,.06);
  border-color: rgba(79,70,229,.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79,70,229,.15);
}

.ge-iconbtn:active{
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(79,70,229,.1);
}

.ge-iconbtn i{
  transition: transform 0.2s ease;
}

.ge-iconbtn:hover i{
  transform: scale(1.1);
}

.ge-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--ge-text);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.ge-brand img{
  height: 32px;
  width: auto;
}

.ge-sidebar{
  grid-area: sidebar;
  border-right:1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.92);
  padding: 14px;
  position: sticky;
  top: var(--ge-topbar-h);
  height: calc(100vh - var(--ge-topbar-h));
  overflow: auto;
  width: 100%;
  left: auto;
  right: auto;
  bottom: auto;
}

.ge-main{
  grid-area: main;
  min-width: 0;
  display:flex;
  flex-direction:column;
  padding: 0;
}

.ge-content{
  flex: 1;
  padding: 12px;
  max-width: var(--ge-content-max);
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 576px){
  .ge-content{
    padding: 14px;
  }
}

@media (min-width: 992px){
  .ge-content{
    padding: 16px;
  }
}

.ge-content .container,
.ge-content .container-xxl{
  padding-left: 0;
  padding-right: 0;
}

.ge-sidebar .ge-nav,
.ge-offcanvas .ge-nav{
  padding: 0;
}

.ge-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 16px;
  border-top: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.85);
}

.ge-footer__left,
.ge-footer__right{
  color: rgba(17,24,39,.75);
  font-size: .9rem;
}

.ge-user{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.9);
  color: var(--ge-text);
  cursor:pointer;
}

.ge-user:hover{
  border-color: rgba(79,70,229,.22);
  background: rgba(79,70,229,.06);
}

.ge-user__avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
}

.ge-user__name{
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ge-nav__list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.ge-nav__item{ margin:0; }

.ge-nav__link{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(17,24,39,.86);
  border: 1px solid transparent;
  background: transparent;
  font-weight: 550;
}

.ge-nav__link i{
  font-size: 1.2rem;
  opacity: .9;
}

.ge-nav__link:hover{
  background: rgba(79,70,229,.06);
  border-color: rgba(79,70,229,.16);
  color: rgba(17,24,39,.92);
}

.ge-nav__link.is-active{
  background: rgba(79,70,229,.12);
  border-color: rgba(79,70,229,.22);
  color: var(--ge-primary);
}

.ge-nav__divider{
  height: 1px;
  margin: 14px 0;
  background: rgba(229,231,235,.9);
}

.ge-offcanvas{
  background: rgba(255,255,255,.98);
  --bs-offcanvas-width: 280px;
}

.ge-offcanvas .offcanvas-header{
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(79,70,229,.06) 0%, rgba(255,255,255,.4) 100%);
}

.ge-offcanvas .offcanvas-header .ge-brand{
  gap: 12px;
}

.ge-offcanvas .offcanvas-header .ge-brand img{
  height: 36px;
}

.ge-offcanvas .offcanvas-header .ge-brand span{
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ge-primary);
}

.ge-offcanvas .offcanvas-body{
  padding: 16px;
}

.ge-offcanvas .btn-close{
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 1;
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.ge-offcanvas .btn-close:hover{
  background-color: rgba(79,70,229,.12);
  transform: rotate(90deg);
}

.ge-page-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.ge-page-head h4{
  letter-spacing: -0.02em;
  font-weight: 700;
}

.ge-cycle-item{
  padding: 12px 12px;
  border: 1px solid rgba(229,231,235,.95);
  border-left: 4px solid rgba(79,70,229,.55);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
}

.ge-cycle-item:hover{
  border-left-color: rgba(79,70,229,.9);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
}

.ge-event-list .event-list-item-php{
  display:flex;
  align-items:flex-start;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
  margin-bottom: 10px;
}

.ge-event-list .event-list-img-php{
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

.ge-event-list .event-list-details-php{
  flex: 1;
  min-width: 0;
}

.ge-event-list .event-list-details-php h6{
  margin-bottom: 6px;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.ge-event-list .event-list-details-php a.text-dark{
  color: rgba(17,24,39,.92) !important;
}

.ge-event-list .event-list-info-php{
  color: rgba(17,24,39,.62);
}

.ge-event-list .event-list-stats-php{
  color: rgba(17,24,39,.70);
}

.ge-event-list .event-list-actions-php{
  flex-shrink: 0;
  display:flex;
  align-items:flex-start;
}

.status-badge{
  font-size: .75rem;
  padding: .35em .7em;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap: 6px;
}

.status-ativo{ background: rgba(22,163,74,.12); color: var(--ge-success); border: 1px solid rgba(22,163,74,.18); }
.status-encerrado{ background: rgba(107,114,128,.12); color: rgba(55,65,81,.85); border: 1px solid rgba(107,114,128,.18); }
.status-privado{ background: rgba(79,70,229,.12); color: var(--ge-primary); border: 1px solid rgba(79,70,229,.18); }
.status-rascunho{ background: rgba(245,158,11,.16); color: #92400e; border: 1px solid rgba(245,158,11,.22); }
.status-arquivado{ background: rgba(156,163,175,.14); color: rgba(55,65,81,.80); border: 1px solid rgba(156,163,175,.22); }

.event-hidden{ display:none !important; }

.metric-card .card-body{
  padding: 16px 16px;
}

.metric-card .metric-content{
  margin-left: 12px;
  text-align: left;
}

.metric-card .metric-content h6{
  margin-bottom: 2px;
  color: rgba(17,24,39,.64);
  font-size: .92rem;
}

.metric-card .metric-content .value{
  font-size: 1.55rem;
  font-weight: 720;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.metric-card .avatar-initial{
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.countdown-timer{ font-weight: 700; color: var(--ge-danger); }
.ciclo-encerrado{ font-weight: 650; color: rgba(107,114,128,.95); }

.count-card .card-body{ padding: 12px; }
.count-card .avatar{ width: 36px; height: 36px; font-size: 1rem; }
.count-card .count-text{ font-size: 1.35rem; font-weight: 750; letter-spacing: -0.02em; }
.count-card .count-label{ font-size: .75rem; color: rgba(17,24,39,.60); }

.ticket-card-wrapper{
  display:flex;
  align-items: stretch;
  border: 1px solid rgba(229,231,235,.95);
  border-radius: 16px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
  overflow:hidden;
  min-height: 150px;
}

.ticket-card-wrapper:hover{
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
}

.ticket-status-icon{
  flex-shrink:0;
  width: 52px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size: 1.55rem;
}

.ticket-card-content{
  padding: 12px 14px;
  flex:1;
  display:flex;
  flex-direction:column;
  min-width:0;
}

.ticket-card-wrapper.status-ativo .ticket-status-icon{ background: rgba(245,158,11,.95); }
.ticket-card-wrapper.status-lembrete .ticket-status-icon{ background: rgba(2,132,199,.95); }
.ticket-card-wrapper.status-concluido .ticket-status-icon{ background: rgba(22,163,74,.95); }
.ticket-card-wrapper.status-cancelado .ticket-status-icon{ background: rgba(107,114,128,.85); }

.ticket-card-content .ticket-title{
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.ticket-card-content .ticket-title a{
  color: rgba(17,24,39,.92);
}

.ticket-card-content .ticket-title a:hover{
  color: var(--ge-primary);
}

.ticket-meta{
  font-size: .78rem;
  color: rgba(17,24,39,.55);
  margin-bottom: 10px;
  line-height: 1.35;
}

.ticket-meta span{ margin-right: 10px; display:inline-block; }

.ticket-users{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: .84rem;
  color: rgba(17,24,39,.72);
}

.ticket-users .user-info{ display:flex; align-items:center; min-width:0; }
.ticket-users .avatar{ width: 26px; height: 26px; margin-right: 8px; }

.ticket-prazo{
  font-size: .85rem;
  margin-top: auto;
  border-top: 1px solid rgba(229,231,235,.85);
  padding-top: 10px;
  color: rgba(17,24,39,.75);
}

.prazo-vencido{ color: var(--ge-danger); font-weight: 800; margin-left: 6px; }
.data-finalizada{ font-weight: 700; color: rgba(17,24,39,.60); }

.ticket-card-wrapper.status-concluido,
.ticket-card-wrapper.status-cancelado{ opacity: .88; }

.item-hidden{ display:none !important; }

@media (max-width: 576px){
  .ticket-users{ flex-direction: column; align-items:flex-start; gap: 6px; }
}

@media (max-width: 576px){
  .ge-event-list .event-list-item-php{
    flex-direction: column;
    align-items: stretch;
  }
  .ge-event-list .event-list-img-php{
    width: 100%;
    height: 160px;
  }
  .ge-event-list .event-list-actions-php{
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px){
  .ge-nav__link{
    font-size: 0.95rem;
    padding: 14px 12px;
  }

  .ge-nav__link i{
    font-size: 1.3rem;
  }
}

@media (max-width: 576px){
  .ge-content{
    padding: 12px;
  }
  
  .ge-topbar__right .ge-user__name{
    display: none !important;
  }
  
  .ge-topbar h4{
    font-size: 0.85rem !important;
  }
  
  /* Cards responsivos */
  .metric-card .card-body {
    padding: 12px;
  }
  
  .metric-card .value {
    font-size: 1.3rem !important;
  }
  
  /* Botões em tela pequena */
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-group .btn {
    width: 100%;
    border-radius: 12px !important;
    margin-bottom: 8px;
  }
  
  /* Grid de eventos */
  .row.g-3 {
    gap: 12px !important;
  }
  
  .col-12.col-md-6.col-lg-4 {
    padding: 0 !important;
  }
}

@media (max-width: 768px){
  /* Ajustes para tablets */
  .ge-page-header h4 {
    font-size: 1.5rem;
  }
  
  /* Cards em grid */
  .row > [class*='col-'] {
    margin-bottom: 16px;
  }
  
  /* Tabelas scrolláveis */
  .table-responsive {
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
  }
  
  /* Dropdown menus */
  .dropdown-menu {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .ge-producer .lift,
  .ge-producer .lift:hover{
    transition:none;
    transform:none;
  }
}

