* { box-sizing: border-box; }
body {
  margin: 0;
  overscroll-behavior-x: none;
}
.fit { display: inline-block; }
.grid { display: grid; }
.flex { display: flex; }
.pool { display: grid; }
.insert { outline: 0; }
.dropdown {
  cursor: pointer;
  outline: 0;
}
.handle {
  cursor: pointer;
  outline: 0;
}
.full-height { height: 100%; }
.absolute { position: absolute; }
.i-select-wrapper { position: relative; }
.i-select-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 2;
}
.i-select-container {
  position: absolute;
  max-height: 200px;
  width: 100%;
  white-space: normal;
  overflow: auto;
  z-index: 3;
  display: grid;
}
.i-select-option {
  display: block;
  padding: 7px;
  width: 100%;
  cursor: pointer;
}
.togglerarrow-icons { padding-right: 5px; }
.platform-user {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.platform-user-img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.platform-user-texts {
  padding-left: 5px;
}
.user-id { padding-left: 10px; }
#alert {
  color: black;
  font-size: 16px;
  bottom: 20px;
  position: absolute;
  left: 20px;
  padding: 10px;
  z-index: 10001 !important;
  display: none;
  background: white;
  border: 1px solid gray;
  height: min-content !important;
}
#alert.alert-error {
  color: white;
  background: #b10c0c;
  border: 1px solid darkred;
}
#alert.alert-success {
  color: white;
  background: green;
  border: 1px solid darkgreen;
}
#alert.alert-active { display: block; }
.courses {
  padding: 10px;
}
.courses-product-name {
  display: block;
  font-size: 20px;
  padding: 10px;
}
.courses-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.course-item {
  position: relative;
  min-height: 90px;
  margin-right: 10px;
  cursor: pointer;
  background-color: #434343;
  color: #ffffff;
}
.course-item-image {
  display: block;
  width: 100%;
  height: auto;
}
.course-texts {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto min-content min-content;
  grid-gap: 10px;
  padding: 10px;
  text-align: center;
  top: 0;
}
.unavailable-course-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: #00000059;
  backdrop-filter: blur(1px);
  font-size: 30px;
  display: grid;
  align-content: center;
  justify-content: center;
  text-decoration: none;
}
.course-container {
  display: grid;
  position: fixed;
  grid-template-rows: min-content auto;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #ffffff;
  white-space: normal;
}
.course-wrapper {
  display: grid;
  height: 55px;
  grid-template-columns: min-content auto;
  grid-gap: 20px;
  padding: 10px 20px;
  border-bottom: 1px solid #3e4143;
  color: #ffffff;
  background-color: #1c1d1f;
  align-items: center;
  color: white;
  text-align: start;
}
.course-image {
  height: calc(55px - 20px);
}
.course-name {
  padding-left: 10px;
  border-left: 1px solid #3e4143;
}
.course-grid {
  display: grid;
  grid-template-columns: 73% 27%;
  grid-template-areas: 'a c' 'b c';
  max-height: calc(100svh - 55px);
  grid-template-rows: min-content 1fr;
}
.course-video-container {
  height: min-content;
  grid-area: a;
  background: black;
  display: grid;
  align-content: center;
}
.course-video {
  width: 70%;
  aspect-ratio: 16 / 9;
  display: block;
  margin: 0 auto;
}
.tutorial-description-container {
  grid-area: b;
  overflow: auto;
}
.tutorial-description-grid {
  display: grid;
  grid-gap: 20px;
  padding: 10px 20px;
}
.tutorial-name {
  display: block;
  font-size: 22px;
  color: black;
  border-bottom: 1px solid lightgray;
  padding-bottom: 5px;
}
.tutorial-name a {
  color: #ffee0a;
}
.tutorial-description {
  display: block;
  color: black;
}
.tutorial-description a {
  color: #ffee0a;
  text-decoration: none;
}
.tutorial-list-container {
  display: grid;
  height: 100%;
  font-size: 19px;
  grid-area: c;
  max-height: calc(100svh - 55px);
  grid-template-rows: min-content auto;
}
.tutorial-list {
  overflow: auto;
}
.close-course-grid {
  display: grid;
  grid-template-columns: auto min-content;
  padding: 15px;
  grid-gap: 15px;
  align-items: center;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #d1d7dc;
  font-weight: bold;
  background-color:#ffffff;
}
.close-course-text {
  color: black;
  text-align: center;
}
.close-course-container {
  border: 0;
  cursor: pointer;
  background-color: #ffffff;
  color: #000000;
  padding: 0;
}
.module-wrapper {
  display: grid;
  padding: 15px;
  border-top: 1px solid #d1d7dc;
  background-color: #f7f9fa;
  font-weight: bold;
  cursor: pointer;
  grid-template-columns: min-content auto;
  grid-gap: 15px;
  color: black;
  text-align: start;
}
.tutorial-name-list-wrapper {
  display: grid;
  padding: 15px;
  cursor: pointer;
  grid-gap: 15px;
  grid-template-columns: min-content auto;
  color: black;
  text-align: start;
  width: 100%;
}
.tutorial-active { color: gray; }
.tutorial-thumbnail {
  width: 120px;
  height: 70px;
}
.tutorial-name-list {
  white-space: initial;
}
  @media only screen and (max-width: 802px) {
      .courses-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-grid {
    grid-template-areas: 'a' 'b' 'c';
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr 1fr;
  }
  }
.dbot-hidden {
  position: fixed;
  z-index: -1;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  top: 0;
}
.dwin { color: green; }
.dloss { color: red; }
.tradetable {
  width: 100%;
  border: 1px solid #f2f2f2;
  background: white;
  color: black;
  font-size: 10px;
}
.tradetable-thead {
  text-transform: capitalize;
}
.bb-table-key {
  padding: 10px;
  text-align: start;
  border-right: 1px solid #f2f2f2;
}
.bb-table-key-last {
  padding: 10px;
  text-align: start;
}
.bb-table-value {
  padding: 10px;
  border-top: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
}
.bb-table-value-last {
  padding: 10px;
  border-top: 1px solid #f2f2f2;
}
.account-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
}
.accounts-flex {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.account-wrapper { position: relative; }
.account-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 2;
}
.accounts-container {
  position: absolute;
  width: 100%;
  z-index: 3;
  white-space: normal;
  left: 0;
  top: 14px;
}
.account-option {
  padding: 7px;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.confirmation-container {
  background: white;
  width: 100%;
  max-width: 300px;
  padding: 20px;
  border: 1px solid black;
  color: black;
}
.confirmation-text { padding-bottom: 10px; }
.confirmation-buttons { text-align: end; }
.confirmation-yes { background: white; }
.confirmation-no {
  background: black;
  color: white;
}
.confirmation-yes, .confirmation-no {
  border: 0;
  padding: 5px 10px;
  font-weight: bold;
}
.confirmation-yes:hover { background: #dddddd; }
.confirmation-no:hover { background: #343434; }
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 81;
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.modal-content {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
}
.profit-red { color: red; }
.profit-green { color: green; }
.gamer-workers { position: relative; }
.worker-select-placeholder-name {
  padding-right: 7px;
}
.worker-select-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 2;
}
.worker-select-container {
  position: absolute;
  max-height: 200px;
  width: 100%;
  white-space: normal;
  overflow: auto;
  z-index: 3;
}
.worker-select-option {
  display: block;
  padding: 7px;
  width: 100%;
  cursor: pointer;
}
.dbot {
  width: 100%;
  height: 100%;
  border: 0;
}
.forex-exchange-rates-table {
  text-align: end;
  white-space: nowrap;
}
.quote-flag { width: 15px; }
.quote-up { background: green; }
.quote-down { background: red; }
.quote-crypto { font-size: 13px; }
  @media only screen and (max-width: 802px) {
      .exchange-rates-table th:nth-of-type(1),
  .forex-table.exchange-rates-table th:nth-of-type(3),
  .crypto-table.exchange-rates-table th:nth-of-type(2),
  .forex-table.exchange-rates-table tbody tr:nth-of-type(1),
  .crypto-table.exchange-rates-table tbody tr:nth-of-type(2),
  .exchange-rates-table tbody tr:nth-of-type(3),
  .exchange-rates-table tbody tr:nth-of-type(4),
  .exchange-rates-table tbody tr:nth-of-type(5),
  .exchange-rates-table td:nth-of-type(1),
  .forex-table.exchange-rates-table td:nth-of-type(3),
  .crypto-table.exchange-rates-table td:nth-of-type(2) {
    display: none;
  }
  }
.logtable-error { color: red; }
.logtable-success { color: green; }
.logtable-notify { color: white; }
/* Animação suave ao entrar/sair dos cards de operações recentes */
.__recent-op-card {
  overflow: hidden;
  transition: none; /* animação manual via keyframes */
}
.__recent-op-card.slide-out {
  animation: slideUp 0.5s ease-in forwards;
}
.__recent-op-card.slide-in {
  animation: slideDown 0.5s ease-out forwards;
}
@keyframes slideUp {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}
@keyframes slideDown {
  0%   { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.sidebar-handle.active-dashboard-handle {
  border: 1px solid rgba(108,99,255,0.3) !important;
  box-shadow: 0 0 12px rgba(108,99,255,0.15), inset 0 0 6px rgba(108,99,255,0.04);
  background: rgba(108, 99, 255, 0.3) !important;
}
.sidebar-handle.active-dashboard-handle .sidebar-handle-icon {
  color: #c0c0ff;
  text-shadow: 0 0 6px rgba(108,99,255,0.4);
}
.__Tmaj2MWq {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: linear-gradient(160deg, #2a2a3a 0%, #1a1a2a 100%);
  border-radius: 8px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 0.9em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 8px rgba(108,99,255,0.15);
}
.__Tmaj2MWq:hover {
  background: linear-gradient(160deg, #3a3a4a 0%, #252535 100%);
  box-shadow: 0 0 16px rgba(108,99,255,0.4);
}
.__Tmaj2MWq:active {
  transform: scale(0.98);
}
.management-wrapper {
  background:
    linear-gradient(135deg, rgba(8, 12, 28, 0.92) 0%, rgba(2, 6, 18, 0.96) 100%);
  backdrop-filter: blur(6px);
  border-radius: 0;
  padding: 24px 28px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(108, 99, 255, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.1);
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.management-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 99, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 99, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  border-radius: inherit;
}
.__vsM4S7l9 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.__ZFIAfMfy,
.__Ka5PuvOL {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(108, 99, 255, 0.08);
}
.__ZFIAfMfy th,
.__Ka5PuvOL th {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.18) 0%, rgba(80, 70, 220, 0.12) 100%);
  color: #c8c0f0;
  font-weight: 600;
  padding: 14px 18px;
  font-size: 0.8em;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(108, 99, 255, 0.2);
}
.__ZFIAfMfy td,
.__Ka5PuvOL td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: #d0d0e8;
  font-size: 0.9em;
  transition: background 0.2s ease;
}
.__ZFIAfMfy tbody tr:last-child td,
.__Ka5PuvOL tbody tr:last-child td {
  border-bottom: none;
}
.__ZFIAfMfy tbody tr:hover td,
.__Ka5PuvOL tbody tr:hover td {
  background: rgba(108, 99, 255, 0.06);
  color: #f0e8ff;
}
/* Inputs estilizados */
.management-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 99, 255, 0.25);
  border-radius: 10px;
  padding: 10px 14px;
  color: #e0e0f8;
  font-size: 0.95em;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
  font-weight: 500;
}
.management-input:focus {
  border-color: #7C6CFF;
  background: rgba(108, 99, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15), 0 0 12px rgba(108, 99, 255, 0.1);
}
.management-input::placeholder {
  color: rgba(180, 180, 210, 0.3);
  font-weight: 400;
}
/* Botões em linha com ícones */
.management-handles {
  display: flex;
  flex-direction: row;
  gap: 6px;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
  width: 100%;
}
.management-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid;
  background: transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.management-handle::before {
  font-family: 'bootstrap-icons', 'Bi';
  font-size: 1.1rem;
  line-height: 1;
  padding-left: 4px;
}
.management-handle:hover {
  width: auto;
  border-radius: 18px;
  padding: 0 12px;
  font-size: 0.9em;
  gap: 5px;
}
.calculate-management {
  color: #7acf7a;
  border-color: rgba(122, 207, 122, 0.3);
  background: rgba(122, 207, 122, 0.06);
}
.calculate-management::before {
  content: '\F4F4';
}
.calculate-management:hover {
  background: rgba(122, 207, 122, 0.12);
  border-color: rgba(122, 207, 122, 0.5);
  box-shadow: 0 0 16px rgba(122, 207, 122, 0.15);
  transform: translateY(-2px);
}
.save-management {
  color: #a07cf0;
  border-color: rgba(160, 124, 240, 0.3);
  background: rgba(160, 124, 240, 0.06);
}
.save-management::before {
  content: '\F7D8';
  padding-left: 3px;
}
.save-management:hover {
  background: rgba(160, 124, 240, 0.12);
  border-color: rgba(160, 124, 240, 0.5);
  box-shadow: 0 0 16px rgba(160, 124, 240, 0.15);
  transform: translateY(-2px);
}
.restore-management {
  color: #6cb8e8;
  border-color: rgba(108, 184, 232, 0.3);
  background: rgba(108, 184, 232, 0.06);
}
.restore-management::before {
  content: '\F117';
}
.restore-management:hover {
  background: rgba(108, 184, 232, 0.12);
  border-color: rgba(108, 184, 232, 0.5);
  box-shadow: 0 0 16px rgba(108, 184, 232, 0.15);
  transform: translateY(-2px);
}
.management-handle:active {
  transform: translateY(0) scale(0.97);
}
.__hPr7SJPT {
  padding: 0;
}
.tutorials-wrapper {
  padding: 32px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 24px;
  overflow: auto;
}
.__fkAe54Jo {
  font-size: 2.2em;
  font-weight: 700;
  color: #e8e8f0;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}
.__OCdzOOjC {
  font-size: 1em;
  color: #9a9ab0;
  line-height: 1.6;
}
.__HaqWDqig {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.__rZH7xPTn {
  font-size: 1.1em;
  font-weight: 600;
  color: #e0e0ff;
  letter-spacing: 0.4px;
}
/* Base style for modal handles */
.deriv-modal-handles .handle,
.deriv-modal-handles button {
  width: 100%;
  padding: 12px 0;
  border: 1px solid #6C63FF;
  background: linear-gradient(135deg, #0a0a1a 0%, #111130 100%);
  color: #ffffff;
  font-size: 0.95em;
  font-weight: bold !important;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 8px rgba(108, 99, 255, 0.2), inset 0 0 6px rgba(108, 99, 255, 0.1);
  text-shadow: 0 0 5px rgba(108, 99, 255, 0.3);
  letter-spacing: 0.3px;
}
.deriv-modal-handles .handle:hover,
.deriv-modal-handles button:hover {
  background: linear-gradient(135deg, #1a1a3a 0%, #0d0d2a 100%);
  border-color: #8C7AFF;
  box-shadow: 0 0 18px rgba(108, 99, 255, 0.45), inset 0 0 12px rgba(108, 99, 255, 0.2);
  text-shadow: 0 0 10px rgba(108, 99, 255, 0.6);
  transform: translateY(-1px);
}
.deriv-modal-handles .handle:active,
.deriv-modal-handles button:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(108, 99, 255, 0.3), inset 0 0 4px rgba(108, 99, 255, 0.15);
}
/* Login button (inside __BtJsTfxM) - destaque */
.__BtJsTfxM .handle {
  background: linear-gradient(135deg, #1a1040 0%, #2a2060 100%);
  border-color: #b0a0ff;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(108, 99, 255, 0.5), inset 0 0 10px rgba(108, 99, 255, 0.25);
  text-shadow: 0 0 10px rgba(108, 99, 255, 0.6);
}
.__BtJsTfxM .handle:hover {
  background: linear-gradient(135deg, #2a1a5a 0%, #3a2a7a 100%);
  border-color: #c8b8ff;
  box-shadow: 0 0 28px rgba(108, 99, 255, 0.7), inset 0 0 16px rgba(108, 99, 255, 0.35);
  transform: translateY(-2px);
}
.__BtJsTfxM .handle:active {
  transform: translateY(0);
  box-shadow: 0 0 12px rgba(108, 99, 255, 0.5), inset 0 0 6px rgba(108, 99, 255, 0.2);
}
/* Cancel button (inside __akwMiFIZ) - bold sem excesso */
.__akwMiFIZ .handle {
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #d0d0e0;
  font-weight: 700;
}
.__akwMiFIZ .handle:hover {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}
.__akwMiFIZ .handle:active {
  transform: translateY(0);
}
/* Login button (inside __BtJsTfxM) - destaque */
.__BtJsTfxM .handle {
  background: linear-gradient(135deg, #1a1040 0%, #2a2060 100%);
  border-color: #b0a0ff;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(108, 99, 255, 0.5), inset 0 0 10px rgba(108, 99, 255, 0.25);
  text-shadow: 0 0 10px rgba(108, 99, 255, 0.6);
}
.__BtJsTfxM .handle:hover {
  background: linear-gradient(135deg, #2a1a5a 0%, #3a2a7a 100%);
  border-color: #c8b8ff;
  box-shadow: 0 0 28px rgba(108, 99, 255, 0.7), inset 0 0 16px rgba(108, 99, 255, 0.35);
  transform: translateY(-2px);
}
.__BtJsTfxM .handle:active {
  transform: translateY(0);
  box-shadow: 0 0 12px rgba(108, 99, 255, 0.5), inset 0 0 6px rgba(108, 99, 255, 0.2);
}
/* Cancel button (inside __akwMiFIZ) - subtle */
.__akwMiFIZ .handle {
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #9a9ab0;
}
.__akwMiFIZ .handle:hover {
  background: rgba(255,255,255,0.05);
  color: #d0d0e0;
  border-color: rgba(255,255,255,0.2);
}
.__akwMiFIZ .handle:active {
  transform: translateY(0);
}
>>>>>>> REPLACE
__### edit
<<<<<<< SEARCH
.deriv-modal-handles .handle:active,
.deriv-modal-handles button:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(108, 99, 255, 0.3), inset 0 0 4px rgba(108, 99, 255, 0.15);
}
=======
.deriv-modal-handles .handle:active,
.deriv-modal-handles button:active {
  transform: translateY(0);
  box-shadow: 0 0 8px rgba(108, 99, 255, 0.3), inset 0 0 4px rgba(108, 99, 255, 0.15);
}
.__E2OyfDLM {
  background: rgba(20, 20, 30, 0.9);
  border: 1px solid #ff4d4d;
  border-radius: 8px;
  color: #ff4d4d;
  font-weight: 500;
  font-size: 0.9em;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.__E2OyfDLM:hover {
  background: rgba(40, 20, 20, 0.9);
  border-color: #ff6666;
  color: #ff6666;
  box-shadow: 0 0 8px rgba(255, 77, 77, 0.3);
}
.__E2OyfDLM:active {
  transform: scale(0.97);
}
.__G8wax8ok,
.__pDlkPSqp,
.__qfta2F0e {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 12px;
  padding: 11px 15px;
}
.__qfta2F0e {
  padding: 0;
  gap: 0;
}
.__G8wax8ok:hover,
.__pDlkPSqp:hover,
.__qfta2F0e:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.tradetable-thead th {
  background: rgba(185, 212, 185, 0.1);
  color: #b0d0b0;
  font-weight: 600;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
  text-align: left;
}
.tradetable tbody td {
  padding: 12px 16px;
  color: #e0e0f0;
  font-size: 0.95em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}
.tradetable tbody tr:last-child td {
  border-bottom: none;
}
.tradetable tbody tr:hover td {
  background: rgba(57, 255, 20, 0.04);
  color: #ffffff;
}
.bb-table-key,
.bb-table-key-last {
  font-weight: 600;
}
.bb-table-value,
.bb-table-value-last {
  font-weight: 400;
}
.worker-select-overlay {
  background:
    linear-gradient(rgba(5,10,25,0.8), rgba(10,20,50,0.85)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}
/* --- BOT WRAPPER REFINADO (tema Tron) --- */
.bot-wrapper {
  background:
    linear-gradient(rgba(5,10,25,0.8), rgba(10,20,50,0.85)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 24px 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow-y: auto;
  height: 100%;
  position: relative; /* para botão logout absoluto */
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px !important;
}
@keyframes tronGlow {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
/* Grid principal: 3 colunas com gap moderado */
.__N93DdpCf {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.3fr;
  gap: 12px;
  align-items: start;
  margin-top: 0; /* sem espaço extra */
}
/* Coluna esquerda (account + saldo + lucro) – sem o logout */
.__VptHasle {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bot-wrapper .__qfta2F0e .account-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bot-wrapper .__qfta2F0e .account-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 0;
  padding: 10px 16px;
  color: #e0e0f0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.bot-wrapper .__qfta2F0e .account-container:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(108,99,255,0.5);
}
.bot-wrapper .__G8wax8ok:hover,
.bot-wrapper .__pDlkPSqp:hover,
.bot-wrapper .__qfta2F0e:hover {
  border-color: rgba(108, 99, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6), 0 0 12px rgba(108,99,255,0.08);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.bot-wrapper .stage_0,
.bot-wrapper .stage_1,
.bot-wrapper .stage_3,
.bot-wrapper .stage_4,
.bot-wrapper .stage_6 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0;
}
.bot-wrapper .stage_0.active {
  color: #f0b0b0;
}
.bot-wrapper .stage_1.active {
  color: #a0c8f0;
}
.bot-wrapper .stage_3.active,
.bot-wrapper .stage_4.active {
  color: #a0e0a0;
}
.bot-wrapper .stage_6.active {
  color: #e0e0a0;
}
/* Controles Run / Stop – cores distintas */
.bot-wrapper .dbot-run-button,
.bot-wrapper .dbot-stop-button {
  border-radius: 12px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0.6px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bot-wrapper .dbot-run-button {
  background: rgba(76, 175, 80, 0.5) !important;
  border: 1px solid #4caf50 !important;
  color: white !important;
}
.bot-wrapper .dbot-run-button:hover {
  background: rgba(76, 175, 80, 0.35);
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
  transform: translateY(-1px);
}
.bot-wrapper .dbot-stop-button {
  background: rgba(244, 67, 54, 0.4) !important;
  border: 1px solid #f44336 !important;
  color: white !important;
}
.bot-wrapper .dbot-stop-button:hover {
  background: rgba(244, 67, 54, 0.35);
  box-shadow: 0 0 10px rgba(244, 67, 54, 0.3);
  transform: translateY(-1px);
}
.bot-wrapper .dbot-run-button:active,
.bot-wrapper .dbot-stop-button:active {
  transform: translateY(0);
}
/* Workers – seletor refinado */
.bot-wrapper .__GK7v3wN6 {
  margin-top: 8px;
  width: 100%;
}
.gamer-workers {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 6px 10px;
  transition: border-color 0.2s;
}
.gamer-workers:hover {
  border-color: rgba(108, 99, 255, 0.3);
}
.worker-select {
  background: transparent;
  border: none;
  color: #d0d0e8;
  padding: 6px 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.worker-select-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  color: white;
  gap: 8px;
}
.worker-select-placeholder-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.worker-select-overlay {
  backdrop-filter: blur(2px);
}
.worker-select-option {
  background: transparent;
  color: #c8c8e0;
  padding: 10px 14px;
  width: 100%;
  text-align: left;
  border-radius: 0;
  transition: background 0.2s;
  cursor: pointer;
  border: 1px solid rgba(108, 99, 255, 0.5) !important;
}
.worker-select-option:hover {
  background: rgba(108, 99, 255, 0.15);
  color: #ffffff;
}
/* Coluna direita (gráficos + select) – repaginada */
.__o5YwSKYX {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.__o5YwSKYX .__b4L6h78Y {
  font-size: 0.9em;
  font-weight: 600;
  color: #d0d0e0;
  letter-spacing: 0.3px;
}
/* Área de gráficos – placeholder */
.__o5YwSKYX .__X977KgPN {
  flex: 1;
  min-height: 200px;
}
.bot-wrapper .__o5YwSKYX .i-select-wrapper {
  height: 100%;
}
.bot-wrapper .__o5YwSKYX .active-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 0;
  padding: 12px 10px;
  color: #b0b0c8;
  transition: all 0.25s;
  cursor: pointer;
}
.bot-wrapper .__o5YwSKYX .active-toggler:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(108,99,255,0.3);
  box-shadow: 0 0 12px rgba(108,99,255,0.1);
}
/* Títulos internos */
.bot-wrapper .__W9Ao22JK,
.bot-wrapper .__wK4aiKMt {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.5;
  margin-bottom: 6px;
}
.bot-wrapper .tradetable thead th {
  background: rgba(255, 255, 255, 0.05);
  color: #c0c0d0;
  font-weight: 600;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}
.bot-wrapper .tradetable tbody td {
  padding: 8px 14px;
  color: #d0d0e0;
  font-size: 0.8em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, color 0.2s ease;
}
.bot-wrapper .tradetable tbody tr:last-child td {
  border-bottom: none;
}
.bot-wrapper .tradetable tbody tr:hover td {
  background: rgba(255, 255, 255, 0.04);
  color: #f0f0ff;
}
/* Wrappers internos do dashboard com padding */
.dashboard-container > .qDz4RAlh {
  padding: 20px 24px;
}
/* Quotes wrapper (já existente, só ajuste fino) */
.quotes-wrapper {
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.85) 0%, rgba(3, 5, 15, 0.95) 100%);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 8px 32px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(108, 99, 255, 0.06);
  border: 1px solid rgba(108, 99, 255, 0.12);
  backdrop-filter: blur(8px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
}
.quotes-wrapper:not(.hidden) {
  display: flex;
}
.__quotes-header {
  font-size: 1.2em;
  font-weight: 700;
  color: #e0e0f0;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
  margin-bottom: 8px;
  padding: 12px 16px;
  background: rgba(108, 99, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(108, 99, 255, 0.2);
}
/* Forex converter refinado */
.__g6zwZPwE, .__QaTBoDqg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
  align-items: center;
  padding: 0 10px;
}
.__mX4OMpZ5 .quote0,
.__mX4OMpZ5 .quote1 {
  font-size: 0.9em;
  font-weight: 600;
  color: #b0b0d0;
  letter-spacing: 0.3px;
}
.__mX4OMpZ5 input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  color: #e0e0f0;
  font-size: 0.95em;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  box-sizing: border-box;
}
.__mX4OMpZ5 input:focus {
  border-color: #7C6CFF;
  box-shadow: 0 0 0 2px rgba(108,99,255,0.15);
}
/* Exchange rates table */
.__skECFtqM.exchange-rates-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin-top: 8px;
}
.__skECFtqM thead th {
  background: rgba(108,99,255,0.12);
  color: #c8c0f0;
  font-weight: 600;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(108,99,255,0.2);
  text-align: left;
}
.__skECFtqM tbody td {
  padding: 10px 16px;
  color: #d0d0e8;
  font-size: 0.85em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s ease;
}
.__skECFtqM tbody tr:last-child td {
  border-bottom: none;
}
.__skECFtqM tbody tr:hover td {
  background: rgba(108,99,255,0.06);
  color: #f0e8ff;
}
.quote-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quote-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}
.quote-value {
  font-weight: 600;
}
.quote-up {
  color: #7acf7a;
}
.quote-down {
  color: #f66;
}
.account-container {
  display: grid !important;
}
.account-placeholder {
  display: grid !important;
  grid-template-columns: 1fr min-content;
}
.account-placeholder-inner {
  text-align: start;
  display: grid;
  gap: 4px;
}
.account-placeholder-name {
  font-weight: bold;
  color: white;
}
.account-placeholder-infos {
  display: flex;
  font-size: 11px;
  gap: 4px;
}
.gamer-workers {
  border-radius: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  width: 80%;
  margin: 0 auto;
}
.worker-select-container {
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  padding: 8px;
  height: 100%;
  max-height: none;
  background:
    linear-gradient(rgba(5,10,25,0.8), rgba(10,20,50,0.85)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.worker-welcome {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #e0e0ff;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.3);
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(10, 15, 40, 1), rgba(20, 10, 50, 1));
  border-radius: 14px;
  border: 1px solid rgba(108, 99, 255, 0.15);
  margin: 20px auto 8px auto;
  width: min-content;
  white-space: nowrap;
}
.worker-texts {
  font-size: 0.95em;
  line-height: 1.6;
  color: #b0b0d0;
  padding: 16px 20px;
  margin-bottom: 12px;
  text-align: center;
}
.worker-select-option {
  background:
    linear-gradient(135deg, rgba(8, 14, 34, 0.5), rgba(18, 12, 44, 0.5)),
    url("https://images.fineartamerica.com/images/artworkimages/medium/3/epic-futuristic-mech-warrior-sci-fi-battle-robot-concept-art-talha-khan.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  height: 240px;
  width: 180px;
  border-radius: 14px;
  border: 2px solid rgba(108, 99, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(108, 99, 255, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.worker-select-option:hover {
  border-color: rgba(108, 99, 255, 0.7);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(108, 99, 255, 0.25), inset 0 0 12px rgba(108, 99, 255, 0.1);
  transform: translateY(-3px);
}
.worker-select-option:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 99, 255, 0.4) transparent;
}
.quote-up {
  color: green;
  background: transparent;
}
.quote-down {
  color: red;
  background: transparent;
}
.__sWJLme4i {
  font-size: 1.25em;
  font-weight: 700;
  color: #e0e0f0;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  margin-bottom: 16px;
}
/* Log Table Styles */
.dlog-wrapper {
  background: linear-gradient(145deg, rgba(15,18,35,0.8), rgba(10,12,30,0.9));
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.02);
  overflow-x: auto;
  height: 100%;
}
.dlog-wrapper table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.02);
  color: #f0f0ff;
  font-weight: 600;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.dlog-wrapper thead th {
  background: rgba(185, 212, 185, 0.1);
  color: #b0d0b0;
  font-weight: 600;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
  text-align: left;
}
.dlog-wrapper tbody td {
  padding: 12px 16px;
  color: #e0e0f0;
  font-size: 0.95em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}
.dlog-wrapper tbody tr:last-child td {
  border-bottom: none;
}
.dlog-wrapper tbody tr:hover td {
  background: rgba(57, 255, 20, 0.04);
  color: #ffffff;
}
.logtable-th {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logtable-td {
  font-size: 0.9em;
  font-weight: 500;
}
.logtable-error {
  color: #ff6b6b;
  border-left: 3px solid #ff6b6b;
  padding-left: 10px;
}
.logtable-success {
  color: #69db7c;
  border-left: 3px solid #69db7c;
  padding-left: 10px;
}
.logtable-notify {
  color: #74c0fc;
  border-left: 3px solid #74c0fc;
  padding-left: 10px;
}
.dlog-wrapper.hidden {
  display: none;
}
.dlog-wrapper:not(.hidden) {
  display: block;
}
.actions-handle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: start;
}
.worker-select-wrapper > div {
  display: flex;
  gap: 10px;
}
.__ewJabyuE .dashboard-handle {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 8px 16px;
  color: #b0b0c8;
  font-weight: 600;
  font-size: 0.85em;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  top: 1px;
}
.__ewJabyuE .dashboard-handle:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(108,99,255,0.25);
  color: #d0d0e8;
}
.__ewJabyuE .dashboard-handle.active-dashboard-handle {
  background: linear-gradient(145deg, rgba(108,99,255,0.15), rgba(108,99,255,0.05));
  border-color: rgba(108,99,255,0.3);
  border-bottom-color: transparent;
  color: #f0f0ff;
  box-shadow: 0 -2px 6px rgba(108,99,255,0.2);
}
.__hqa09rRF {
  height: 100svh !important;
  display: grid !important;
  grid-template-columns: min-content 1fr !important;
  background: radial-gradient(circle at 50% 0%, #161623 0%, #0b0b13 100%) !important;
  font-family: 'Inter', sans-serif !important;
  color: #d0d0e0 !important;
}
.__qL8xwCAf {
  display: grid !important;
  grid-template-rows: min-content 1fr !important;
}
.__sZ20mCd1 {
  background: linear-gradient(180deg, #14141e 0%, #111118 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 10px !important;
}
.__jpkmM8Fx {
  background-color: #141414 !important;
}
.__hxcJFUD8 {
  color: #6b6c71 !important;
}
.__pLdfAI0E {
  display: none !important;
}
.__Nru54iex {
  display: grid !important;
  grid-template-columns: min-content 1fr !important;
}
.__akqQ44dh {
  display: flex !important;
  flex-direction: column !important;
}
.__rQ28QoFb {
  display: grid !important;
}
.__IvSzgp0A {
  display: grid !important;
}
.__Ws8UuoBS {
  display: grid !important;
  padding: 10px !important;
  background: linear-gradient(180deg, #15151f 0%, #101018 100%) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 2px 0 12px rgba(0,0,0,0.3) !important;
  border-radius: 12px 0 0 12px !important;
  overflow: hidden !important;
}
.sidebar-handle {
  padding: 4px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  display: grid !important;
  border-radius: 14px !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
}
.sidebar-handle:hover {
  border-color: rgba(108,99,255,0.25) !important;
  box-shadow: 0 0 8px rgba(108,99,255,0.1) !important;
  background: rgba(255,255,255,0.02) !important;
}
.sidebar-handle-inner {
  background: rgba(255, 255, 255, 0.03) !important;
  padding: 10px !important;
  border-radius: 12px !important;
  transition: background 0.25s, box-shadow 0.25s !important;
}
.sidebar-handle-inner:hover {
  background: rgba(255,255,255,0.05) !important;
  box-shadow: inset 0 0 8px rgba(108,99,255,0.08) !important;
  color: #b0b0e8 !important;
  text-shadow: 0 0 6px rgba(108,99,255,0.25) !important;
}
.sidebar-handle-icon {
  font-size: 19px !important;
  color: #9a9ab0 !important;
  transition: color 0.25s, text-shadow 0.25s !important;
}
.__G6rPWIsB {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 8px !important;
}
.sidebar-anchor {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  color: rgba(180,180,200,0.45) !important;
  font-size: 16px !important;
  border-radius: 10px !important;
  background: transparent !important;
  transition: all 0.25s ease !important;
}
.sidebar-anchor:hover {
  background: rgba(255,255,255,0.04) !important;
  color: rgba(220,220,255,0.75) !important;
  box-shadow: 0 0 8px rgba(108,99,255,0.08) !important;
}
.__ojpJXdMN {
  background: transparent !important;
  color: #ea6c6c !important;
  font-size: 18px !important;
  text-align: center !important;
  width: 100% !important;
  border: 0 !important;
}
.__ojpJXdMN:hover {
  color: red !important;
}
.__mEuPfU4v {
  display: none !important;
}
.dashboard-container {
  overflow: auto !important;
  background: linear-gradient(135deg, #13131c 0%, #0c0c12 100%) !important;
}
.__vsM4S7l9 {
  display: grid !important;
  grid-template-columns: 1fr min-content !important;
  white-space: nowrap !important;
  align-items: center !important;
  gap: 16px !important;
}
.__ZFIAfMfy {
  width: 100% !important;
  text-align: center !important;
}
.__Ka5PuvOL {
  width: 100% !important;
  text-align: center !important;
  padding-top: 20px !important;
}
.__qDz4RAlh {
  background-size: 100% 100%, 100% 100%, 200% 200% !important;
  animation: bgShift 15s ease infinite !important;
  backdrop-filter: blur(6px) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}
.__qDz4RAlh::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: !important;
  linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),: !important;
  linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) !important;: !important;
  background-size: 40px 40px !important;
  pointer-events: none !important;
  border-radius: inherit !important;
}
.__CA8WHfRi {
  display: grid !important;
  grid-template-columns: 1fr 400px !important;
  gap: 0 !important;
  height: 100% !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
}
.__vxShFqhh {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 12px !important;
}
.__QRHlVEcC {
  background: linear-gradient(145deg, rgba(28,28,45,0.95) 0%, rgba(18,18,30,0.98) 100%) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
  border-radius: 14px !important;
  height: min-content !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  padding: 16px !important;
  width: 100% !important;
  max-width: 320px !important;
  box-sizing: border-box !important;
}
.__C6fDNPu6 {
  padding: 16px !important;
  height: 100% !important;
  box-sizing: border-box !important;
}
.__h6cGc0tN {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}
.main-card {
  height: 170px !important;
  border-radius: 12px !important;
  display: grid !important;
  grid-template-rows: 1fr min-content min-content !important;
  padding: 12px 14px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.main-card:hover {
  transform: translateY(-2px) !important;
}
.main-card-icon {
  color: rgba(255,255,255,0.4) !important;
  font-size: 40px !important;
  filter: drop-shadow(0 0 4px rgba(57,255,20,0.15)) !important;
}
.main-card-title {
  color: rgba(210, 210, 240, 0.6) !important;
  font-weight: 500 !important;
  font-size: 0.8em !important;
  letter-spacing: 0.2px !important;
}
.main-card-text {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 1.1em !important;
}
.__A4xdlqp1 {
  background: linear-gradient(180deg, #15102a 0%, #1a1035 100%) !important;
  border: 1px solid rgba(108,99,255,0.25) !important;
  box-shadow: 0 4px 15px rgba(108,99,255,0.08), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}
.__BlLkOhUH {
  background: linear-gradient(180deg, #0f1625 0%, #151d30 100%) !important;
  border: 1px solid rgba(108,99,255,0.2) !important;
  box-shadow: 0 4px 15px rgba(108,99,255,0.06), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}
.__BIswlbPX {
  display: none !important;
}
.deriv-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 100svh !important;
  width: 100vw !important;
  display: grid !important;
  place-items: center !important;
  z-index: 999 !important;
  backdrop-filter: blur(10px) !important;
}
.deriv-modal-inner {
  background: linear-gradient(145deg, #1e1e2f 0%, #181820 100%) !important;
  color: white !important;
  border-radius: 16px !important;
  padding: 28px 32px !important;
  font-family: sans-serif !important;
  display: grid !important;
  gap: 20px !important;
  border: 1px solid rgba(108, 99, 255, 0.35) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(108, 99, 255, 0.25) !important;
  backdrop-filter: blur(12px) !important;
}
.deriv-modal-title {
  font-size: 1.1em !important;
  font-weight: 600 !important;
  color: #e0e0ff !important;
  text-shadow: 0 0 8px rgba(57,255,20,0.3) !important;
}
.deriv-modal-handles {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}
.__N93DdpCf {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 16px !important;
  align-items: start !important;
  margin-bottom: 10px !important;
}
.__VptHasle {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 12px !important;
  padding: 20px !important;
}
.__E70NhT0T {
  display: flex !important;
  flex-direction: column !important;
  padding: 12px !important;
  place-items: center !important;
  align-self: center !important;
  gap: 10px !important;
}
.__o5YwSKYX {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  font-size: 0.9em !important;
  font-weight: 600 !important;
  color: #d0d0d8 !important;
  letter-spacing: 0.3px !important;
}
.tradetable {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.02) !important;
  color: #f0f0ff !important;
  font-weight: 600 !important;
  font-size: 0.85em !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  border-bottom: none !important;
  text-align: left !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.quotes-wrapper {
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.85) 0%, rgba(3, 5, 15, 0.95) 100%) !important;
  border-radius: 18px !important;
  padding: 20px 24px !important;
  box-shadow: !important;
  inset 0 1px 0 rgba(255, 255, 255, 0.02),: !important;
  0 8px 32px rgba(0, 0, 0, 0.7),: !important;
  0 0 20px rgba(108, 99, 255, 0.06) !important;: !important;
  border: 1px solid rgba(108, 99, 255, 0.12) !important;
  backdrop-filter: blur(8px) !important;
  overflow: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  height: 100% !important;
  box-sizing: border-box !important;
}
.quotes-wrapper:not(.hidden) {
  display: flex !important;
}
.__wY0oxF8J {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 6px !important;
}
.__xaJL27rL {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  padding: 20px !important;
  overflow: auto !important;
}
.__FypfyAAg {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}
.__iy6RSzJ0 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.__card-item {
  background-size: cover !important;
  background-position: center !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  position: relative !important;
  height: 220px !important;
  display: flex !important;
  align-items: flex-end !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  cursor: pointer !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5) !important;
}
.__card-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(57,255,20,0.15) !important;
}
.__card-overlay {
  padding: 24px 16px 18px !important;
  background: linear-gradient(to top, rgba(5,5,15,0.95) 0%, rgba(10,10,25,0.6) 50%, transparent 100%) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.__card-title {
  display: block !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  font-size: 1.25em !important;
  letter-spacing: 0.3px !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5) !important;
}
.__card-subtitle {
  display: block !important;
  font-size: 0.85em !important;
  color: #a0a0c0 !important;
  margin-top: 4px !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6) !important;
}
.__S7wDcVhA {
  height: 12px !important;
}
.__bBCxdJJf {
  font-size: 1.2em !important;
  font-weight: 600 !important;
  color: #e0e0f0 !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.3px !important;
}
.__recent-ops-title {
  font-weight: 600 !important;
  font-size: 1.2em !important;
  color: #e0e0f0 !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.3px !important;
}
.__recent-op-card {
  background: rgba(255,255,255,0.02) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s !important;
}
.__recent-op-card:hover {
  border-color: rgba(57,255,20,0.2) !important;
  background: rgba(255,255,255,0.05) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
}
.__recent-ops-list {
  display: flex !important;
  flex-direction: column-reverse !important;
  gap: 12px !important;
}
.__recent-op-img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid rgba(108,99,255,0.3) !important;
}
.__recent-op-info {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  grid-template-rows: 1fr 1fr !important;
  row-gap: 4px !important;
  width: 100% !important;
}
.__recent-op-name {
  font-weight: 600 !important;
  color: #e8e8f0 !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
}
.__recent-op-value {
  color: #7C5CBF !important;
  grid-column: 2 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
  font-weight: 700 !important;
  text-shadow: 0 0 6px rgba(124,92,191,0.3) !important;
}
.__recent-op-date {
  font-size: 0.8em !important;
  color: #7a7a90 !important;
  grid-column: 1 !important;
  grid-row: 2 !important;
}
.i-select-wrapper {
  position: relative !important;
}
.i-select-top {
  position: fixed !important;
  top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
  z-index: 100 !important;
}
.i-select-overlay {
  position: absolute !important;
  top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
  background: rgba(0,0,0,0.4) !important;
  backdrop-filter: blur(2px) !important;
}
.i-select-container {
  position: absolute !important;
  top: 100% !important; left: 0 !important; width: 100% !important;
  background: linear-gradient(145deg, #1a1a2a 0%, #121220 100%) !important;
  border: 1px solid rgba(108,99,255,0.3) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 12px rgba(108,99,255,0.1) !important;
  z-index: 200 !important;
  max-height: 200px !important;
  overflow-y: auto !important;
  padding: 4px !important;
}
.i-select-wrapper-inner {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  color: #c0b0ff !important;
  background: rgba(108,99,255,0.15) !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
  font-size: 0.9em !important;
  text-align: left !important;
}
.__Or5eJWOp {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  /* Inputs genéricos */: !important;
}
.input[type="text"], {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(108,99,255,0.2) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  color: #e0e0f0 !important;
  font-size: 0.95em !important;
  outline: none !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.input:::focus, {
  border-color: #6C63FF !important;
  box-shadow: 0 0 0 2px rgba(108,99,255,0.15) !important;
}
.handle {
  cursor: pointer !important;
  color: inherit !important;
  font: inherit !important;
}
.handle:focus-visible {
  outline: 2px solid #6C63FF !important;
  outline-offset: 2px !important;
}
.__E2OyfDLM {
  background: rgba(20, 20, 30, 0.9) !important;
  border: 1px solid #ff4d4d !important;
  border-radius: 8px !important;
  color: #ff4d4d !important;
  font-weight: 500 !important;
  font-size: 30px !important;
  padding: 6px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  letter-spacing: 0.5px !important;
}
.__E2OyfDLM:hover {
  background: rgba(40, 20, 20, 0.9) !important;
  border-color: #ff6666 !important;
  color: #ff6666 !important;
  box-shadow: 0 0 8px rgba(255, 77, 77, 0.3) !important;
}
.__E2OyfDLM:active {
  transform: scale(0.97) !important;
}
.__K2xo3nNT {
  display: grid !important;
  grid-template-columns: min-content 1fr !important;
  gap: 10px !important;
  align-items: center !important;
}
.__KmG8Vhjr {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 700 !important;
  font-size: 19px !important;
}
.__Vrq1tP5f {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 700 !important;
  font-size: 19px !important;
}
.__dvWAPNb7 {
  display: none !important;
}
.__ewJabyuE {
  display: flex !important;
  gap: 4px !important;
  background: transparent !important;
  backdrop-filter: blur(6px) !important;
  border-radius: 12px 12px 0 0 !important;
  color: #e0e0ff !important;
  font-size: 0.85em !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
  position: relative !important;
  z-index: 2 !important;
  margin-bottom: 0 !important;
}
.ddash-container {
  background: rgba(10, 14, 28, 0.5) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(108, 99, 255, 0.2) !important;
  border-top: none !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  margin-top: 0 !important;
  min-height: 140px !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.ddash-container:hover {
  border-color: rgba(108, 99, 255, 0.35) !important;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5), 0 0 16px rgba(108, 99, 255, 0.1) !important;
}
.__p9b8Z6xd {
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 700 !important;
}
.worker-select-wrapper {
  padding-top: 40px !important;
  padding-right: 40px !important;
  padding-left: 40px !important;
  padding-bottom: 40px !important;
}
.bb-table-value {
  border-width: 0px !important;
}
.bb-table-key {
  border-width: 0px !important;
}
.bb-table-value-last {
  border-width: 0px !important;
}
.__aEvRpyCd {
  text-decoration: none !important;
}
.__e5OOXRYC {
  display: none !important;
}
.hidden {
  display: none !important;
  /*position: absolute !important;
  z-index: -9999 !important;
  top: -20404px !important;
  opacity: 0 !important;*/
}
