/*!
 * Theme: Argenox Theme v1.0.0
 * Tag: c61efa1
 * Commit: c61efa1
 * Branch: master
 * Built: 2026-01-11
 */

/**
 * BLE SoC Selector Tool Styles
 * 
 * Copyright (c) 2025 Argenox Technologies LLC
 * All rights reserved.
 * 
 * This software is proprietary and confidential. Unauthorized copying,
 * modification, distribution, or use of this software, via any medium is
 * strictly prohibited without the express written permission of Argenox Technologies LLC.
 */
.ble-soc-selector {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  padding: 0;
  margin-left: calc(-1 * var(--bs-gutter-x, 12px));
  margin-right: calc(-1 * var(--bs-gutter-x, 12px));
  width: calc(100% + 2 * var(--bs-gutter-x, 12px));
}
.ble-soc-selector * {
  box-sizing: border-box;
}
.ble-soc-selector .container {
  max-width: 100%;
  margin: 0;
  background: #0a1a2e;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  padding: 20px;
}
.ble-soc-selector .header {
  background: linear-gradient(135deg, #1a2332 0%, #0a1a2e 100%);
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.ble-soc-selector .header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 600;
}
.ble-soc-selector .header p {
  opacity: 0.9;
  font-size: 1.1em;
}
.ble-soc-selector .filters-section {
  background: #1a2332;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.ble-soc-selector .filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ble-soc-selector .filters-header h3 {
  margin: 0;
  color: white;
  font-size: 1.3em;
}
.ble-soc-selector .filters-controls {
  display: flex;
  gap: 10px;
}
.ble-soc-selector .btn-reset-filters,
.ble-soc-selector .btn-toggle-columns {
  padding: 8px 16px;
  border: 2px solid #00d4ff;
  border-radius: 6px;
  background: transparent;
  color: #00d4ff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ble-soc-selector .btn-reset-filters:hover,
.ble-soc-selector .btn-toggle-columns:hover {
  background: #00d4ff;
  color: #0a1a2e;
}
.ble-soc-selector .filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.ble-soc-selector .filter-item label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: white;
  font-size: 0.9em;
}
.ble-soc-selector .filter-multiselect {
  width: 100%;
  padding: 8px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  font-size: 0.9em;
  background: #0a1a2e;
  color: white;
  height: 150px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #00d4ff white;
}
.ble-soc-selector .filter-multiselect:focus {
  outline: none;
  border-color: #00d4ff;
}
.ble-soc-selector .filter-multiselect option {
  background: #0a1a2e;
  color: white;
}
.ble-soc-selector .filter-multiselect::-webkit-scrollbar {
  width: 8px;
}
.ble-soc-selector .filter-multiselect::-webkit-scrollbar-track {
  background: white;
  border-radius: 4px;
}
.ble-soc-selector .filter-multiselect::-webkit-scrollbar-thumb {
  background: #00d4ff;
  border-radius: 4px;
  border: 1px solid white;
}
.ble-soc-selector .filter-multiselect::-webkit-scrollbar-thumb:hover {
  background: #00b8e6;
}
.ble-soc-selector .filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 150px;
  overflow-y: auto;
  padding: 8px;
  background: #0a1a2e;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  scrollbar-width: thin;
  scrollbar-color: #00d4ff white;
}
.ble-soc-selector .filter-checkboxes::-webkit-scrollbar {
  width: 8px;
}
.ble-soc-selector .filter-checkboxes::-webkit-scrollbar-track {
  background: white;
  border-radius: 4px;
}
.ble-soc-selector .filter-checkboxes::-webkit-scrollbar-thumb {
  background: #00d4ff;
  border-radius: 4px;
  border: 1px solid white;
}
.ble-soc-selector .filter-checkboxes::-webkit-scrollbar-thumb:hover {
  background: #00b8e6;
}
.ble-soc-selector .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9em;
  color: white;
}
.ble-soc-selector .checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #00d4ff;
}
.ble-soc-selector .checkbox-label span {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.ble-soc-selector .filter-range-dual {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0;
}
.ble-soc-selector .range-track {
  position: relative;
  width: 80%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  margin: 0 auto;
}
.ble-soc-selector .range-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: #00d4ff;
  border-radius: 3px;
  pointer-events: none;
}
.ble-soc-selector .range-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #00d4ff;
  border: 2px solid white;
  border-radius: 50%;
  cursor: -webkit-grab;
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.5);
  z-index: 2;
  transition: transform 0.1s ease;
}
.ble-soc-selector .range-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 2px 12px rgba(0, 212, 255, 0.8);
}
.ble-soc-selector .range-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.15);
}
.ble-soc-selector .range-handle-min {
  z-index: 3;
}
.ble-soc-selector .range-handle-max {
  z-index: 3;
}
.ble-soc-selector .range-values {
  text-align: center;
  font-size: 0.9em;
  color: #00d4ff;
  font-weight: 500;
}
.ble-soc-selector .filter-min input[type=number] {
  width: 100%;
  padding: 8px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  font-size: 0.9em;
  background: #0a1a2e;
  color: white;
}
.ble-soc-selector .filter-min input[type=number]:focus {
  outline: none;
  border-color: #00d4ff;
}
.ble-soc-selector .column-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a2332;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  z-index: 1001;
  max-width: 400px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #00d4ff white;
}
.ble-soc-selector .column-menu::-webkit-scrollbar {
  width: 8px;
}
.ble-soc-selector .column-menu::-webkit-scrollbar-track {
  background: white;
  border-radius: 4px;
}
.ble-soc-selector .column-menu::-webkit-scrollbar-thumb {
  background: #00d4ff;
  border-radius: 4px;
  border: 1px solid white;
}
.ble-soc-selector .column-menu::-webkit-scrollbar-thumb:hover {
  background: #00b8e6;
}
.ble-soc-selector .column-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}
.ble-soc-selector .column-menu-backdrop.active {
  display: block;
}
.ble-soc-selector .column-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}
.ble-soc-selector .column-menu-header h4 {
  margin: 0;
  color: white;
}
.ble-soc-selector .btn-close-menu {
  background: none;
  border: none;
  font-size: 24px;
  color: #00d4ff;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.ble-soc-selector .btn-close-menu:hover {
  background: rgba(0, 212, 255, 0.2);
  color: white;
}
.ble-soc-selector .column-menu-body {
  padding: 20px;
}
.ble-soc-selector .column-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
  color: white;
}
.ble-soc-selector .column-checkbox-label:hover {
  background: rgba(0, 212, 255, 0.1);
}
.ble-soc-selector .column-checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #00d4ff;
  cursor: pointer;
}
.ble-soc-selector .column-checkbox-label span {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.ble-soc-selector .results-section {
  background: #1a2332;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.ble-soc-selector .results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ble-soc-selector .results-header h3 {
  margin: 0;
  color: white;
  font-size: 1.3em;
}
.ble-soc-selector .results-count {
  color: #00d4ff;
  font-weight: 500;
}
.ble-soc-selector .table-container {
  overflow-x: auto;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  background: #0a1a2e;
  scrollbar-width: thin;
  scrollbar-color: #00d4ff white;
}
.ble-soc-selector .table-container::-webkit-scrollbar {
  height: 12px;
}
.ble-soc-selector .table-container::-webkit-scrollbar-track {
  background: white;
  border-radius: 6px;
  margin: 0 2px;
}
.ble-soc-selector .table-container::-webkit-scrollbar-thumb {
  background: #00d4ff;
  border-radius: 6px;
  border: 2px solid white;
}
.ble-soc-selector .table-container::-webkit-scrollbar-thumb:hover {
  background: #00b8e6;
}
.ble-soc-selector .soc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
  background: #0a1a2e;
}
.ble-soc-selector .soc-table thead {
  background: #1a2332;
  color: white;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}
.ble-soc-selector .soc-table thead th {
  padding: 12px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid rgba(0, 212, 255, 0.1);
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.ble-soc-selector .soc-table thead th:last-child {
  border-right: none;
}
.ble-soc-selector .soc-table thead th:has(.drag-handle):hover {
  background: rgba(0, 212, 255, 0.1);
}
.ble-soc-selector .soc-table thead th .drag-handle {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  cursor: -webkit-grab;
  cursor: grab;
  margin-right: 6px;
  font-size: 0.9em;
  vertical-align: middle;
  line-height: 1;
}
.ble-soc-selector .soc-table thead th .drag-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.ble-soc-selector .soc-table thead th .drag-handle:hover {
  color: #00d4ff;
}
.ble-soc-selector .soc-table thead th .column-label {
  display: inline-block;
  vertical-align: middle;
}
.ble-soc-selector .soc-table thead th .column-menu-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 1.2em;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
  transition: all 0.2s ease;
}
.ble-soc-selector .soc-table thead th .column-menu-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
}
.ble-soc-selector .soc-table thead th.sortable {
  padding-right: 50px;
}
.ble-soc-selector .soc-table thead th.sortable .column-label {
  cursor: pointer;
}
.ble-soc-selector .soc-table thead th.sortable:hover {
  background: rgba(0, 212, 255, 0.1);
}
.ble-soc-selector .soc-table thead th.sortable .sort-icon {
  position: absolute;
  right: 35px;
  font-size: 0.8em;
  color: #00d4ff;
  top: 50%;
  transform: translateY(-50%);
}
.ble-soc-selector .soc-table .column-header-menu {
  background: #1a2332;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 4px 0;
  min-width: 150px;
}
.ble-soc-selector .soc-table .column-header-menu .menu-item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: transparent;
  border: none;
  color: white;
  text-align: left;
  cursor: pointer;
  font-size: 0.9em;
  transition: background 0.2s ease;
}
.ble-soc-selector .soc-table .column-header-menu .menu-item:hover {
  background: rgba(0, 212, 255, 0.2);
}
.ble-soc-selector .soc-table tbody tr {
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  transition: background 0.2s ease;
}
.ble-soc-selector .soc-table tbody tr:hover {
  background: rgba(0, 212, 255, 0.1);
}
.ble-soc-selector .soc-table tbody tr:last-child {
  border-bottom: none;
}
.ble-soc-selector .soc-table tbody td {
  padding: 12px;
  color: white;
  text-align: center;
  border-right: 1px solid rgba(0, 212, 255, 0.05);
}
.ble-soc-selector .soc-table tbody td:last-child {
  border-right: none;
}
.ble-soc-selector .soc-table tbody td .tag {
  display: inline-block;
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  margin-right: 4px;
  margin-bottom: 4px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}
.ble-soc-selector .soc-table tbody td .tag-status-active {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  border: 1px solid rgba(0, 212, 255, 0.3);
}
.ble-soc-selector .soc-table tbody td .tag-status-not-recommended {
  background: rgba(255, 165, 0, 0.2);
  color: #ffa500;
  border: 1px solid rgba(255, 165, 0, 0.4);
}
.ble-soc-selector .soc-table tbody td .tag-status-obsolete {
  background: rgba(255, 0, 0, 0.2);
  color: #ff4444;
  border: 1px solid rgba(255, 0, 0, 0.4);
}
.ble-soc-selector .soc-table tbody td .product-link {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ble-soc-selector .soc-table tbody td .product-link:hover {
  color: #00b8e6;
  text-decoration: underline;
}
.ble-soc-selector .pagination-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 15px;
  background: #0a1a2e;
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  flex-wrap: wrap;
  gap: 15px;
}
.ble-soc-selector .pagination-items-per-page {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ble-soc-selector .pagination-items-per-page label {
  color: white;
  font-size: 0.9em;
  font-weight: 500;
}
.ble-soc-selector .pagination-items-per-page select {
  padding: 6px 12px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  background: #1a2332;
  color: white;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ble-soc-selector .pagination-items-per-page select:focus {
  outline: none;
  border-color: #00d4ff;
}
.ble-soc-selector .pagination-items-per-page select option {
  background: #1a2332;
  color: white;
}
.ble-soc-selector .pagination-info {
  color: white;
  font-size: 0.9em;
  font-weight: 500;
}
.ble-soc-selector .pagination-buttons {
  display: flex;
  gap: 10px;
}
.ble-soc-selector .btn-pagination {
  padding: 8px 16px;
  border: 2px solid #00d4ff;
  border-radius: 6px;
  background: transparent;
  color: #00d4ff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9em;
}
.ble-soc-selector .btn-pagination:hover:not(:disabled) {
  background: #00d4ff;
  color: #0a1a2e;
}
.ble-soc-selector .btn-pagination:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: rgba(0, 212, 255, 0.3);
  color: rgba(0, 212, 255, 0.5);
}
.ble-soc-selector .tool-version {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
}
.ble-soc-selector .tool-version strong {
  font-weight: 600;
}
.ble-soc-selector .tool-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
}
.ble-soc-selector .tool-footer p {
  margin: 0;
}
.ble-soc-selector .tool-footer a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ble-soc-selector .tool-footer a:hover {
  color: #00b8e6;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .ble-soc-selector .filters-grid {
    grid-template-columns: 1fr;
  }
  .ble-soc-selector .filters-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .ble-soc-selector .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ble-soc-selector .table-container {
    font-size: 0.8em;
  }
}

/*# sourceMappingURL=ble-soc-selector.css.map */