/* BBFunded Account Selector Styles */
.bbfunded-account-selector-wrapper {
  font-family: Arial, sans-serif;
  position: relative;
}

.bbfunded-account-selector-wrapper .section-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bbfunded-account-selector-wrapper .border-blue {
  background: #00c5d6;
  -webkit-background-clip: text;
  -webkit-text-stroke: 3px transparent;
  color: black;
  margin: 0;
  filter: drop-shadow(-17px 0 61.9px rgba(0, 197, 214, 0.45));
}

.bbfunded-account-selector-wrapper .text {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.bbfunded-account-selector-wrapper .title-table {
  margin-top: 8px;
  background: linear-gradient(
    to right,
    rgba(0, 197, 214, 0.12),
    rgba(102, 102, 102, 0.12)
  );
  color: white;
  font-weight: 600;
}

.bbfunded-account-selector-wrapper th {
  display: none;
}

.bbfunded-account-selector-wrapper .table_bold {
  font-weight: 700;
}

.bbfunded-account-selector-wrapper .table_container {
  width: 50%;
  border-left: solid 1px #666666;
  padding: 1rem;
}

.bbfunded-account-selector-wrapper table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  margin-top: 1rem;
}

.bbfunded-account-selector-wrapper tr {
  border-bottom: 1px solid black;
}

.bbfunded-account-selector-wrapper td {
  padding: 15px 10px;
  border: none !important;
  border-bottom: solid 1px #666666 !important;
  background: none !important;
  font-size: 0.95rem;
  line-height: 1.4;
}

.bbfunded-account-selector-wrapper td:first-child {
  font-weight: 600;
  color: #00c5d6;
}

.bbfunded-account-selector-wrapper td:last-child {
  color: #ffffff;
}

.bbfunded-account-selector-wrapper table tr:hover {
  background-color: rgba(0, 197, 214, 0.05);
}

.bbfunded-account-selector-wrapper input[type="radio"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  appearance: none;
  background: none;
  border: 1px solid white;
  border-radius: 50%;
  position: relative;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 197, 214, 1);
  transition: box-shadow 0.3s ease;
}

.bbfunded-account-selector-wrapper input[type="radio"]:checked {
  box-shadow: 0 0 10px rgba(0, 197, 214, 1);
}

.bbfunded-account-selector-wrapper input[type="radio"]:checked::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #00c5d6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
}

.bbfunded-account-selector-wrapper .container-account {
  width: 100% !important;
  margin-bottom: 2rem;
  padding: 0 1rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.bbfunded-account-selector-wrapper .table-challenge {
  border-left: solid 1px white;
}

.bbfunded-account-selector-wrapper .tab-label {
  padding: 1rem;
  text-align: center;
  background: rgba(53, 62, 71, 25%);
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bbfunded-account-selector-wrapper .tab-label:hover {
  background: rgba(53, 62, 71, 50%);
}

.bbfunded-account-selector-wrapper .tab-container {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  border-radius: 0.5em;
  gap: 8px;
}

.bbfunded-account-selector-wrapper .tab-container input {
  display: none;
}

.bbfunded-account-selector-wrapper .swiper-container input {
  display: none;
}

.bbfunded-account-selector-wrapper input:checked + .tab-label {
  color: white;
  font-weight: 600;
  background: linear-gradient(#000, #000) padding-box,
    linear-gradient(60deg, #00c5d6, #ff8c00) border-box;
  border: 2px solid transparent;
  transition: background 0.3s ease;
}

.bbfunded-account-selector-wrapper .card-pay {
  padding: 2.5rem;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  gap: 2rem;
}

.bbfunded-account-selector-wrapper .table-challenge {
  width: 50%;
}

.bbfunded-account-selector-wrapper .card-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff8c00 39%, #00c5d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.bbfunded-account-selector-wrapper .amount {
  color: white;
  font-weight: 700;
  font-size: 2rem;
}

.bbfunded-account-selector-wrapper .additional-radios {
  color: white;
  font-weight: 600;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.bbfunded-account-selector-wrapper .additional-radios > div {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.bbfunded-account-selector-wrapper .additional-radios label {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.bbfunded-account-selector-wrapper .additional-radios label:hover {
  color: #00c5d6;
}

.bbfunded-account-selector-wrapper .additional-radios input:checked + label {
  color: #00c5d6;
}

.bbfunded-account-selector-wrapper #account-text {
  color: #cccccc;
  font-size: 1rem;
}

.bbfunded-account-selector-wrapper #button-pay {
  background: #00c5d6;
  color: #030512;
  border: none;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bbfunded-account-selector-wrapper #button-pay:hover {
  background: linear-gradient(#000, #000) padding-box,
    linear-gradient(60deg, #00c5d6, #ff8c00) border-box;
  color: white;
  border: 2px solid transparent;
  padding: 0.8rem;
}

.bbfunded-account-selector-wrapper #information-container {
  border: solid 1px #666666;
  display: flex;
  gap: 0;
  min-height: 600px;
  border-radius: 12px;
  transition: background 0.3s ease;
  overflow: hidden;
}

.bbfunded-account-selector-wrapper .button-table {
  border-radius: 8px;
  border: 1px solid #666666;
  background: transparent;
  color: white;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.bbfunded-account-selector-wrapper .button-table.active {
  border: 1px solid #00c5d6;
  background: rgba(0, 197, 214, 0.1);
  color: #00c5d6;
}

.bbfunded-account-selector-wrapper .button-table:hover {
  border: 1px solid #00c5d6;
  background: rgba(0, 197, 214, 0.05);
}

.bbfunded-account-selector-wrapper .container-checkbox {
  text-align: left;
  margin: 0;
}

.bbfunded-account-selector-wrapper .container-checkbox .text {
  margin-bottom: 1rem;
  font-weight: 600;
}

.bbfunded-account-selector-wrapper .checkbox-container {
  display: flex;
  justify-content: left;
  gap: 15px;
  flex-wrap: wrap;
}

.bbfunded-account-selector-wrapper .checkbox-option {
  position: relative;
  padding: 12px 24px;
  border: 1px solid #666666;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.bbfunded-account-selector-wrapper .checkbox-option:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.bbfunded-account-selector-wrapper .checkmark {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: none;
  color: #007bff;
  font-size: 20px;
}

.bbfunded-account-selector-wrapper .checkbox-option.selected {
  background: linear-gradient(#000, #000) padding-box,
    linear-gradient(60deg, #00c5d6, #ff8c00) border-box;
  color: white;
  border: 2px solid transparent;
}

.bbfunded-account-selector-wrapper .checkbox-option.selected .checkmark {
  display: inline;
}

@media (min-width: 721px) {
  .bbfunded-account-selector-wrapper .swiper-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .bbfunded-account-selector-wrapper #information-container {
    flex-direction: column;
  }

  .bbfunded-account-selector-wrapper .table_container {
    width: 100% !important;
    border: none;
    border-top: solid 1px #666666;
  }

  .bbfunded-account-selector-wrapper .card-pay {
    width: 100% !important;
    padding: 1.5rem;
  }

  .bbfunded-account-selector-wrapper .table-challenge {
    width: 100%;
  }

  .bbfunded-account-selector-wrapper .card-title {
    font-size: 1.8rem;
  }

  .bbfunded-account-selector-wrapper .section-title {
    font-size: 1.8rem;
  }

  .bbfunded-account-selector-wrapper .tab-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .bbfunded-account-selector-wrapper .tab-label {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .bbfunded-account-selector-wrapper .amount {
    font-size: 1.5rem;
  }

  .bbfunded-account-selector-wrapper #account-text {
    font-size: 0.9rem;
  }

  .bbfunded-account-selector-wrapper #button-pay {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }

  .bbfunded-account-selector-wrapper .additional-radios {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .bbfunded-account-selector-wrapper .additional-radios label {
    font-size: 1rem;
  }

  .bbfunded-account-selector-wrapper input[type="radio"] {
    width: 14px;
    height: 14px;
  }

  .bbfunded-account-selector-wrapper input[type="radio"]:checked::after {
    width: 10px;
    height: 10px;
  }

  .bbfunded-account-selector-wrapper .checkbox-container {
    gap: 10px;
  }

  .bbfunded-account-selector-wrapper .checkbox-option {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .bbfunded-account-selector-wrapper .tab-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bbfunded-account-selector-wrapper .tab-label {
    font-size: 0.9rem;
    padding: 0.9rem;
  }

  .bbfunded-account-selector-wrapper .additional-radios {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .bbfunded-account-selector-wrapper .additional-radios > div {
    gap: 6px;
  }

  .bbfunded-account-selector-wrapper .additional-radios label {
    font-size: 0.8rem;
    display: block;
    text-align: center;
  }

  .bbfunded-account-selector-wrapper input[type="radio"] {
    width: 13px;
    height: 13px;
  }

  .bbfunded-account-selector-wrapper input[type="radio"]:checked::after {
    width: 9px;
    height: 9px;
  }

  .bbfunded-account-selector-wrapper .card-pay {
    padding: 1rem;
  }

  .bbfunded-account-selector-wrapper .card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .bbfunded-account-selector-wrapper .checkbox-option {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .bbfunded-account-selector-wrapper .container-account {
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .bbfunded-account-selector-wrapper .tab-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bbfunded-account-selector-wrapper .tab-label {
    font-size: 0.85rem;
    padding: 0.85rem;
  }

  .bbfunded-account-selector-wrapper .additional-radios {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .bbfunded-account-selector-wrapper .additional-radios > div {
    gap: 5px;
  }

  .bbfunded-account-selector-wrapper .additional-radios label {
    font-size: 0.7rem;
  }

  .bbfunded-account-selector-wrapper input[type="radio"] {
    width: 12px;
    height: 12px;
  }

  .bbfunded-account-selector-wrapper input[type="radio"]:checked::after {
    width: 8px;
    height: 8px;
  }

  .bbfunded-account-selector-wrapper .section-title {
    font-size: 1.5rem;
  }

  .bbfunded-account-selector-wrapper .text {
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .bbfunded-account-selector-wrapper .additional-radios {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .bbfunded-account-selector-wrapper .additional-radios label {
    font-size: 0.65rem;
  }

  .bbfunded-account-selector-wrapper input[type="radio"] {
    width: 11px;
    height: 11px;
  }

  .bbfunded-account-selector-wrapper input[type="radio"]:checked::after {
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 720px) {
  .bbfunded-account-selector-wrapper .tab-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .bbfunded-account-selector-wrapper .swiper-container {
    display: none;
  }

  .bbfunded-account-selector-wrapper .tab-label {
    font-size: 0.9rem;
    padding: 1rem;
  }
}
