  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      min-height: 100vh;
      background-color: #18181B;
      /* Tailwind's bg-zinc-900 */
      color: #ffffff;
      font-family: sans-serif;
      position: relative;
      overflow: hidden;
  }

  a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.2s ease;
  }

  a:hover {
      color: #D1D5DB;
      /* Tailwind's gray-300 */
  }

  /* BACKGROUND CIRCLE */
  .circle-bg {
      position: absolute;
      left: -30vw;
      top: -30vw;
      width: 60vw;
      height: 60vw;
      border-radius: 50%;
      background: radial-gradient(circle at center, #5B5E61 0%, #18181B 70%);
      filter: blur(60px);
      opacity: 0.7;
      z-index: 0;
  }

  /* HEADER / NAVIGATION */
  .logo-link {
      position: absolute;
      top: 0rem;
      left: 0rem;
      font-size: 1.5rem;
      font-weight: bolder;
      letter-spacing: 0.1em;
      width: 100%;
      height: 110px;
      z-index: 80;
      display: flex;
      background-color: transparent;
      flex-direction: row;
      flex-wrap: nowrap;
      align-content: center;
      align-items: center;
      justify-content: flex-start;
      transition: background-color 0.3s ease;
      /* Smooth background transition */
  }



  .logo-link svg {
      height: 50px;
      width: 50px;
      z-index: 100;
      margin-left: 50px;

  }

  .logo-link.scrolled {
      background-color: #18181B !important;
      box-shadow: 0 2px 20px 5px rgb(0 0 0 / 82%);
      transition: background-color 0.3s ease;
      /* Smooth background transition */
  }


  .nav-costume {
      position: absolute;
      top: 2.8rem;
      /* 'top-8' */
      right: 2rem;
      /* 'right-8' */
      z-index: 90;
  }

  .nav-costume a {
      margin-left: 2rem;
      /* space-x-8 */
      font-size: 0.75rem;
      /* 'text-sm' */
      letter-spacing: 0.15em;
      /* 'tracking-widest' */
      text-transform: uppercase;
  }

  /* MAIN CONTENT */
  .main-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      z-index: 1;
      position: relative;
  }

  .main-content p.small-heading {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      color: #9CA3AF;
      margin-bottom: -10px !important;
      margin-left: -31vh !important;
  }

  .main-content h1 {
      font-size: 6rem;
      /* Adjust to replicate 'text-8xl' */
      font-weight: 900;
      /* 'font-black' */
      letter-spacing: 0.05em;
      /* 'tracking-wider' */
      margin-bottom: 1rem;
      position: relative;
      white-space: nowrap;
  }

  .main-content .subtitle {
      margin-top: 1rem;
  }

  .main-content .subtitle p {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      color: #9CA3AF;
      margin-top: -2.3rem !important;
      margin-right: -11rem !important;
  }

  /* ANIMATIONS */
  @keyframes expandContract {

      0%,
      100% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .expand-contract {
      display: inline-block;
      animation: expandContract 3s infinite;
  }

  /* Delays for the individual letters */
  .animation-delay-100 {
      animation-delay: 0.2s;
  }

  .animation-delay-200 {
      animation-delay: 0.2s;
  }

  .animation-delay-300 {
      animation-delay: 0.2s;
  }

  /* OPTIONAL FLOAT ANIMATION (from style.css in your example) */
  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  .float {
      animation: float 6s ease-in-out infinite;
  }

  /* SOCIAL LINKS */
  .social-links {
      position: fixed;
      bottom: 2rem;
      /* 'bottom-8' */
      left: 3rem;
      /* 'left-8' */
      z-index: 1;
  }

  .social-links a {
      display: block;
      margin-bottom: 1.5rem;
      /* space-y-6 */
      width: 15px;
      height: 15px;
      color: white !important;
  }

  .social-links svg {
      width: 100%;
      height: 100%;
      color: white !important;
  }

  /* SCROLL INDICATOR */
  .scroll-indicator {
      transform-origin: right center;
      position: relative;
  }

  .scroll-indicator span {
      font-size: 0.75rem;
      /* 'text-xs' */
      letter-spacing: 0.3em;
      color: #9CA3AF;
      position: absolute;
      bottom: 2rem;
      /* 'bottom-8' */
      right: 2rem;
      /* 'right-8' */
      /* Tailwind's gray-400 */
  }


  h1 {
      font-family: "Arial Black", sans-serif;
      /* or another heavy font */
      font-weight: 900;
  }

  .wrapper-main {
      height: 100vh;
      width: 100%;
      overflow-y: auto;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      /* Changed to column to stack navbars-top and content */
      justify-content: flex-start;
      /* Align content at the top */
      align-items: center;
  }

  .navbars-top {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: transparent;
      /* Default background */
      width: 100%;
      transition: background-color 0.3s ease;
      height: 100px;
      /* Smooth background transition */
  }

  .navbars-top.scrolled {
      background: #18181B !important;
      box-shadow: 0px 0px 14px 4px rgb(0 0 0 / 47%);
      /* Background turns red when scrolled */
  }


  /* Custom scrollbar styling for WebKit browsers (Chrome, Safari) */
  .wrapper-main::-webkit-scrollbar {
      width: 12px;
  }

  .wrapper-main::-webkit-scrollbar-track {
      background: #2a2a2a;
  }

  .wrapper-main::-webkit-scrollbar-thumb {
      background-color: #555;
      border-radius: 6px;
      border: 3px solid #2a2a2a;
  }

  .card {
      /* background-color: #18181a; */
      background-color: transparent;
      z-index: 100 !important;
      box-shadow: none !important;
      border: none !important;
      position: relative;
      top: 150px;
      display: none;
      transform: translateY(-50px);
      /* Start position (above) */
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;

  }

  .costume-height {
      height: 100vh !important;
  }

  .logo-costume {
      display: flex;
      justify-content: center;
      flex-direction: column;
      flex-wrap: nowrap;
      align-content: flex
  }

  .small-charcater {
      font-size: 2.3rem;
      margin: 0;
      margin-right: 15px;
  }

  .logo-costume-2x {
      display: flex;
  }

  .logo-costume-2x span {
      font-size: 20px;
  }

  .flexible {
      display: flex;
  }


  .loading-page {
      position: absolute;
      top: 90px;
      left: -15px;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
      justify-content: flex-start;
      color: #fff;
  }

  #svg-container svg {
      height: 90px;
      width: auto;
      stroke: white;
      fill-opacity: 0;
      stroke-width: 3px;
      stroke-dasharray: 4500;
      animation: draw 20s ease;
  }

  @keyframes draw {
      0% {
          stroke-dashoffset: 5000;
      }

      100% {
          stroke-dashoffset: 0;
      }
  }


  .or {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #9CA3AF;
      position: relative;
  }

  .or::before,
  .or::after {
      content: "";
      flex: 1;
      height: 1px;
      /* Thickness of the line */
      background-color: #9CA3AF;
      /* Line color */
      margin: 0 10px;
      /* Space between the line and "click" */
  }

  .title-text {
      color: white;
      font-size: 15px !important;
      margin-bottom: 35px;
      font-weight: 300 !important;
      text-transform: uppercase;
      opacity: .8;
  }

  .o8 {
      opacity: .8;
      color: white;
  }

  .form-control-costume {
      width: 100%;
      padding: 12px 15px;
      height: 54px;
      border: none;
      background-color: #18181B;
      /* Dark background */
      color: white;
      /* White text */
      font-size: 16px;
      border-radius: 10px;
      /* Rounded edges */
      outline: none;
      transition: all 0.3s ease;
      border: 1px solid #ffffff40;
  }

  .form-control-costume::placeholder {
      color: rgba(255, 255, 255, 0.6);
      /* Placeholder color */
  }

  .form-control-costume:focus {
      border: 1px solid #ffffff40;
      /* Light white border on focus */
  }

  .btn {
      width: 100%;
      padding: 15px;
      font-weight: 400;
      font-size: 16px;
      border: none;
      border-radius: 15px;
      /* Rounded corners */
      cursor: pointer;
      transition: all 0.3s ease-in-out;
  }

  .btn-check:focus+.btn,
  .btn:focus {
      outline: 0;
      box-shadow: none !important;
  }

  /* Button Styling */
  .btn-primary {
      color: #0e0e11;
      background-color: white;
  }

  .btn-primary:hover {
      background-color: rgba(255, 255, 255, 0.781);
      color: black;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 8px;
  }

  .btn-dark {
      background-color: #18181B !important;
      border: 1px solid #ffffff40;
      color: #4e4e51 !important;
  }

  .btn-dark:hover {
      background-color: #39393B !important;
      border: 1px solid #39393B !important;
      color: white !important;
  }

  /* Base styles for the card */
  .card-menu {
      width: 100%;
      background-color: #3f414470;
      color: white;
      padding: 15px 30px;
      border-radius: 3px;
      height: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
      transition: background-color 0.5s ease;
      cursor: pointer;
  }

  /* Mobile only */
  @media screen and (min-width: 480px) and (max-width: 767px) {
      .card-menu {
          margin-bottom: 25px;
      }
  }

  /* Tablet only */
  @media screen and (min-width: 768px) and (max-width: 1024px) {
      .card-menu {
          margin-bottom: 25px;
      }
  }

  .card-menu p {
      margin: 0;
      font-family: "Alfa Slab One", serif;
      font-size: 2rem;
      letter-spacing: 0.08em;
      position: relative;
      white-space: nowrap;
      text-transform: uppercase;
      z-index: 2;
      /* Ensure text stays above the border elements */
  }

  /* Container for the border spans */
  .border-animation {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      pointer-events: none;
      /* Allows clicks to pass through */
      z-index: 3;
  }

  /* Shared properties for all border spans */
  .border-animation span {
      position: absolute;
      background: white;
      border-radius: 8px;
      /* Apply border radius for borders */
      transition: all 0.5s ease;
  }

  /* RIGHT border: positioned on the right */
  .border-right {
      width: 2px;
      height: 0;
      /* Start with zero height */
      top: 0;
      right: 0;
  }

  /* TOP border: positioned at the top */
  .border-top {
      height: 2px;
      width: 0;
      /* Start with zero width */
      top: 0;
      right: 0;
  }

  /* BOTTOM border: positioned at the bottom */
  .border-bottom {
      height: 2px;
      width: 0;
      /* Start with zero width */
      bottom: 0;
      left: 0;
  }

  /* LEFT border: positioned on the left */
  .border-left {
      width: 2px;
      height: 0;
      /* Start with zero height */
      bottom: 0;
      left: 0;
  }

  /* -------------------------- */
  /* HOVER ANIMATION (APPEAR)   */
  /* -------------------------- */
  .card-menu:hover .border-right {
      transition-delay: 0.5s;
      height: 100%;
      /* Grow from top to bottom */
  }

  .card-menu:hover .border-top {
      transition-delay: 1s;
      width: 100%;
      /* Grow from right to left */
  }

  .card-menu:hover .border-bottom {
      transition-delay: 1s;
      width: 100%;
      /* Grow from left to right */
  }

  .card-menu:hover .border-left {
      transition-delay: 1.5s;
      height: 100%;
      /* Grow from bottom to top */
  }

  /* ----------------------------------- */
  /* UNHOVER ANIMATION (RETRACT) - reverse */
  /* ----------------------------------- */
  .card-menu:not(:hover) .border-left {
      /* Retract immediately */
      transition-delay: 0s;
      height: 0;
  }

  .card-menu:not(:hover) .border-top {
      transition-delay: 0.5s;
      width: 0;
  }

  .card-menu:not(:hover) .border-bottom {
      transition-delay: 0.5s;
      width: 0;
  }

  .card-menu:not(:hover) .border-right {
      transition-delay: 1s;
      height: 0;
  }

  .border-left-cosume {
      border-left: 2px solid white;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      padding: 15px;
      overflow-y: auto;
      overflow-x: hidden;
  }

  /* Custom scrollbar styling for WebKit browsers (Chrome, Safari) */
  .border-left-cosume::-webkit-scrollbar {
      width: 12px;
  }

  .border-left-cosume::-webkit-scrollbar-track {
      background: #2a2a2a;
  }

  .border-left-cosume::-webkit-scrollbar-thumb {
      background-color: #555;
      border-radius: 6px;
      border: 3px solid #2a2a2a;
  }


  .border-left-cosume p {
      font-family: sans-serif;
      font-size: 15px;
      text-transform: capitalize;
      letter-spacing: normal !important;
  }

  .end-wrapper {
      width: 100%;
      background-color: #18181B;
      height: 100px;
      margin-bottom: -47px;
      border-top-right-radius: 20px;
      border-top-left-radius: 20px;
      box-shadow: rgb(0 0 0 / 20%) 2px 7px 24px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 50px !important;
  }

  .bredcrumb-menu {
      width: 100%;
      text-align: center;

  }

  .bredcrumb-menu .breadcrumb {
      text-align: center;
      width: 100%;
      justify-content: center;
  }

  .bredcrumb-menu ol,
  li {
      margin: 0px;
      font-size: 12px !important;
      text-transform: uppercase !important;
      margin-bottom: -5px !important;
  }

  .icone-menu svg {
      width: 40px;
      height: 40px;
  }

  .back-icone {
      height: 68px;
      width: 80px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #131316;
      box-shadow: #0e0e11 0px 5px 9px 0px inset, #0e0e11 0px 0px 9px 0px inset;
      margin-bottom: -8px;
  }

  .back-icone:hover {
      background-color: #18181B !important;
      box-shadow: none !important;
      cursor: pointer;
  }

  .back-icone svg {
      width: 40px;
      height: 40px;
      color: white !important;
  }

  .bg-danger-cosume {
      background-color: #dc35467b !important;
  }

  .bg-danger-cosume:hover {
      background-color: #dc3545 !important;
  }

  .card-of-videos video {
      width: 100%;
      height: 186.59px;
      border-radius: 15px;
  }


  .custom-video::-webkit-media-controls {
      display: none !important;
  }

  .custom-video::-moz-media-controls {
      display: none !important;
  }

  .custom-video::-ms-media-controls {
      display: none !important;
  }

  .custom-video::media-controls {
      display: none !important;
  }

  .duration {
      background: #000000c7;
      padding: 5px;
      width: 100px;
      display: flex;
      align-items: center;
      margin-top: -42px;
      margin-right: 23px;
      z-index: auto;
      position: sticky;
      justify-content: center;
      flex-direction: row;
      margin-left: 16px;
      border-radius: 8px;
  }

  .duration p {
      color: white;
      margin: 0px;
      font-size: 12px;
  }

  .scrolling-y {
      width: 100%;
      height: calc(100vh - 170px);
  }

  /* Width of the scrollbar */
  .scrolling-y::-webkit-scrollbar {
      width: 8px;
  }

  /* The track (background) of the scrollbar */
  .scrolling-y::-webkit-scrollbar-track {
      background: transparent;
      /* You can change this if you wish */
  }

  /* The draggable part of the scrollbar (thumb) */
  .scrolling-y::-webkit-scrollbar-thumb {
      background-color: rgba(255, 255, 255, 0.4);
      /* Semi-transparent white */
      border-radius: 4px;
  }


  .card-selectable {
      border: 2px solid transparent;
      cursor: pointer;
  }

  .card-selectable .selectable-image {
      transition: border 0.3s ease;
  }

  .card-selectable .selectable-image.selected {
      border: 3px solid white;
  }

  .card-costume {
      width: 100%;
      height: 100%;
      background-color: transparent;
      box-shadow: rgba(0, 0, 0, 0.541) 0px 8px 24px;
  }

  .card-costume img {
      width: 100% !important;
      height: 100%;
      object-fit: cover;
  }


  .card-costume-img {
      width: 100%;
      height: 162px;
      object-fit: cover;
      margin-bottom: -3px;
      background-color: transparent;
      box-shadow: rgba(0, 0, 0, 0.541) 0px 8px 24px;
  }




  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
      color: white;
      background-color: #292a2d;
      border-color: #292a2d #292a2d #292a2d;
  }

  #assetsTabContent {
      text-align: left !important;
      margin: 0 !important;
      background-color: #3f414470;
      padding: 15px 30px;
  }


  .nav-tabs {
      border-bottom: 1px solid #292a2d;
  }


  .nav-link {
      color: white;
      font-size: 12px;
      text-transform: uppercase;
  }

  .form-control-costume::file-selector-button {
      background: #292a2d !important;
      border: none;
      color: rgba(255, 255, 255, 0.893);
      font-size: 12px;
      padding: 5px 15px;
  }



  .form-control-costume-textarea {
      width: 100%;
      padding: 12px 15px;
      border: none;
      background-color: #18181B;
      color: white;
      font-size: 16px;
      border-radius: 10px;
      outline: none;
      transition: all 0.3s ease;
      border: 1px solid #ffffff40;
  }

  .form-control-costume-textarea::placeholder {
      color: rgba(255, 255, 255, 0.6);
      /* Placeholder color */
  }

  .form-control-costume-textarea:focus {
      border: 1px solid #ffffff40;
      /* Light white border on focus */
  }

  .nav-link:focus,
  .nav-link:hover {
      color: #ffffffca !important;
      border: 1px solid transparent !important;
  }

  #assetsTabContent label {
      font-size: 13px;
  }


  .card-menu-table {
      width: 100%;
      color: white;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      position: relative;
      overflow: hidden;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
  }

  .card-menu-table:hover {
      transform: scale(1.02);
  }

  .card-menu-table table {
      width: 100%;
      color: white !important;
      border-radius: 8px;
      overflow: hidden;
  }

  .table {
      --bs-table-bg: transparent;
      --bs-table-accent-bg: rgba(255, 255, 255, 0.05);
      --bs-table-striped-color: white;
      --bs-table-striped-bg: rgba(255, 255, 255, 0.07);
      --bs-table-hover-color: white;
      --bs-table-hover-bg: rgba(255, 255, 255, 0.1);
      width: 100%;
      margin-bottom: 1rem;
      vertical-align: middle;
      border-collapse: separate;
      border-spacing: 0;
  }

  .table thead tr {
      background-color: rgba(255, 255, 255, 0.1);
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 8px;
  }

  .table thead tr p {
      margin: 0px !important;
      font-size: 12px !important;
  }

  .table th,
  .table td {
      padding: 12px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .table tbody tr:hover {
      background-color: rgba(255, 255, 255, 0.07);
  }

  .table-bordered>:not(caption)>* {
      border-width: 1px 0;
  }

  .table-bordered>:not(caption)>*>* {
      border-width: 0 1px;
  }

  .table img {
      max-height: 50px;
      border-radius: 5px;
      transition: transform 0.3s ease;
  }

  .table img:hover {
      transform: scale(1.1);
      box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1);
  }


  .table img:hover {
      transform: scale(1) !important;
      box-shadow: none !important;
  }

  #selectedAvatar,
  #selectedBackground {
      width: 100%;
      height: 100%;
  }

  #selectedAvatar img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      background-color: transparent;
      box-shadow: rgba(0, 0, 0, 0.541) 0px 8px 24px;
  }

  #selectedBackground img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      background-color: transparent;
      box-shadow: rgba(0, 0, 0, 0.541) 0px 8px 24px;
  }



  .h-100vh {
      height: 100vh;
  }

  .goAVA-first {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      flex-direction: column;
      height: 100vh;
  }

  .rows {
      --bs-gutter-x: 1.5rem;
      --bs-gutter-y: 0;
      display: flex;
      flex-wrap: wrap;
      margin-top: calc(var(--bs-gutter-y)* -1);
      margin-right: calc(var(--bs-gutter-x)* -.5);
      margin-left: calc(var(--bs-gutter-x)* -.5);
      flex-direction: row;
      align-content: center;
      justify-content: center;
      align-items: center;
  }

  .card-costume {
      position: relative;
  }

  .card-costume p {
      position: absolute;
      bottom: 0px;
      margin: 0px;
      padding: 15px 30px;
      background-color: #00000024;
      width: 100%;
      z-index: 100;
  }

  .card-costume:hover p {
      background-color: #0000009c;
  }

  .card-of-videos {
      position: relative;
  }

  .card-of-videos a img {
      border-radius: 8px;
  }

  .status-code {
      position: absolute !important;
      bottom: 0px;
      right: 0px;
      background: #ffffff69;
      padding: 5px;
      width: 50px;
      height: 28px;
      display: flex;
      align-items: center;
      /* margin-top: -44px; */
      margin-right: 23px;
      z-index: auto;
      /* position: sticky; */
      justify-content: center;
      flex-direction: row;
      margin-left: 16px;
      border-radius: 8px;
  }

  .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
  }

  .dot.complete {
      background-color: green;
  }

  .dot.incomplete {
      background-color: blue;
  }

  .dot.unknown {
      background-color: red;
  }

  .title-steps {
      border-left: 2px solid white;
      padding: 8px 30px;
      background-color: #3f414470;
  }

  .card-of-videos img {
      height: 100% !important;
      width: 100% !important;
      object-fit: cover !important;
      border-radius: 8px;
  }


  .breadcrumb-item.active {
      color: rgb(121 127 133 / 75%) !important;
  }

  .breadcrumb-item+.breadcrumb-item::before {
      float: left;
      padding-right: var(--bs-breadcrumb-item-padding-x);
      color: rgb(121 127 133 / 75%) !important;
      content: var(--bs-breadcrumb-divider, "/");
  }

  .card-account {
      background-color: #3f414470 !important;
  }

  p {
      margin: 0 !important;
  }

  .border-bottom-costume {
      border-bottom: 2px solid #00000024;
  }

  .border-top-costume {
      border-top: 2px solid #00000024 !important;
  }

  .form-control-costume:disabled {
      color: #ffffff54 !important;
  }


  .form-control-costume-second {
      width: 100%;
      padding: 12px 15px;
      height: 54px;
      border: 1px solid #ffffff40;
      background-color: #18181B;
      color: white;
      font-size: 16px;
      border-radius: 10px;
      outline: none;
      transition: all 0.3s ease;
  }

  /* Custom select2 styles matching your theme */
  .select2-container--custom-select2 .select2-selection {
      background-color: #18181B !important;
      border: 1px solid #ffffff40 !important;
      color: white !important;
      height: 54px !important;
      border-radius: 10px;
      padding: 12px 15px;
  }

  /* Adjust the rendered text inside the selection */
  .select2-container--custom-select2 .select2-selection__rendered {
      color: white !important;
      line-height: 30px;
      /* Adjust this value to vertically center text as needed */
  }

  /* Ensure the dropdown arrow matches the style */
  .select2-container--custom-select2 .select2-selection__arrow {
      height: 54px !important;
      right: 10px;
  }

  /* Style the search container in the dropdown */
  .select2-container--custom-select2 .select2-search {
      background-color: #2A2B2C !important;
  }

  /* Style the search input field */
  .select2-container--custom-select2 .select2-search input {
      color: white !important;
      background-color: #2A2B2C !important;
      border: 1px solid #ffffff40 !important;
  }

  /* Style the results container in the dropdown */
  .select2-container--custom-select2 .select2-results {
      background-color: #2A2B2C !important;
  }

  /* Style each option in the results */
  .select2-container--custom-select2 .select2-results__option {
      color: white !important;
      background-color: #2A2B2C !important;
  }

  .select2-dropdown {
      background-color: #2A2B2C;
      border: 1px solid #2A2B2C !important;
      box-sizing: border-box;
      display: block;
      position: absolute;
      left: -100000px;
      width: 100%;
      z-index: 1051;
      border-radius: 5px !important;
      box-shadow: rgba(0, 0, 0, 0.541) 0px 8px 24px !important;
  }

  .download-icone {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: #00000080;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      border-radius: 5px;
  }

  .download-icone:hover {
      cursor: pointer;
      background-color: black;
  }

  .download-icone svg {
      color: white !important;
  }


  .users-section {
      text-align: left !important;
      margin: 0 !important;
      background-color: #3f414470;
      padding: 15px 30px;
  }

  .table tbody tr td,
  p {
      color: white !important;
  }


  .icone-costume-down {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 15px 0px;

  }

  .icone-costume-down svg {
      width: 25px;
      height: 25px;
      color: rgba(255, 255, 255, 0.808);
  }


  .go-404 {
      position: absolute;
      bottom: 10%;
      height: 70px;
      width: 70px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.663);
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .go-404:hover {
      background-color: #ffffff !important;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .go-404 svg {
      color: #0e0e11;
      height: 30px;
      width: 30px;
  }



  .h-80vh {
      height: 80vh;
  }

  .link-back-home {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      position: fixed;
      bottom: 10%;
  }


  .opacity-5 {
      opacity: 0.5 !important;
      font-size: 15px;
  }

  .swal2-toast-custom {
      width: 600px !important;
      background: #292a2d !important;
      /* Added white border */
      border-radius: 8px !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
      color: white !important;
      padding: 12px 16px !important;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
      z-index: 100 !important;
  }

  .swal2-toast-custom .swal2-title {
      font-size: 16px !important;
      font-weight: 600 !important;
      color: white !important;
      margin: 0px 0 0 10px !important;
      padding: 0 !important;
      line-height: 1.2 !important;
  }

  .swal2-toast-custom .swal2-html-container {
      font-size: 14px !important;
      color: rgba(255, 255, 255, 0.761) !important;
      margin: 3px 0 0 10px !important;
      padding: 0 !important;
      line-height: 1.2 !important;
  }

  /* Apply white border and color to all SweetAlert2 icons */
  div:where(.swal2-icon) {
      border-color: white !important;
      color: white !important;
  }