/* ========================================
   NOMADSFLOW RADAR - DARK MODE STYLES
======================================== */

body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
}

#nomadsflow-filters-container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.nomadsflow-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Inputs y selects */
.nomadsflow-filter-group input,
.nomadsflow-filter-group select {
    background-color: #2c2c2c;
    color: #ffffff;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 6px;
    min-width: 180px;
    font-size: 14px;
}

/* Botones */
#apply-filters,
#clear-filters {
    background-color: #00bfa5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#apply-filters:hover {
    background-color: #009e88;
}

#clear-filters {
    background-color: #718096;
}

#clear-filters:hover {
    background-color: #5a6470;
}

/* Resultados */
#nomadsflow-results {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* ========================================
   USER CARD STYLES - LIGHT CARDS ON DARK BACKGROUND
======================================== */

.nomadsflow-card {
    background-color: #ffffff;
    color: #1f2937;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.nomadsflow-card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #111827;
    text-align: center;
}

.nomadsflow-card p {
    margin: 5px 0;
    font-size: 14px;
    color: #374151;
    text-align: center;
}

.nomadsflow-card .contact-button {
    margin-top: 15px;
    background-color: #00bfa5;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.nomadsflow-card .contact-button:hover {
    background-color: #009e88;
}

/* Avatar container */
.avatar-container {
    width: 80px;
    height: 80px;
    overflow: hidden;
    background-color: #ddd;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

/* Unified avatar style */
.avatar-square {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}

/* ========================================
   FILTER GRID LAYOUT (6 columns desktop)
======================================== */

.nomadsflow-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.filter-cell {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Responsive: apilar en móvil */
@media (max-width: 768px) {
  .nomadsflow-filter-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FILTER DROPDOWNS - DETAILS + CHECKBOXES
======================================== */

details {
  width: 100%;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px 14px;
  background-color: #2c2c2c;
  color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  display: block;
}

details summary {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
  cursor: pointer;
  text-align: left;
  list-style: none;
}

/* Contenedor de checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 160px;
  overflow-y: auto;
  margin-top: 6px;
  padding-right: 2px;
  box-sizing: border-box;
}

/* Ítem individual: checkbox + texto alineado */
.checkbox-item {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  box-sizing: border-box;
}

/* Checkbox */
.checkbox-item input[type="checkbox"] {
  margin-right: 8px;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Texto del checkbox */
.checkbox-label {
  flex-grow: 1;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  cursor: pointer;
}
/* === RADAR WELCOME PANEL === */
.radar-welcome {
    background-color: #1a1a1a; /* Fondo igual que eventos y filtros */
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}
.radar-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff !important; /* ← Esto es lo que faltaba */
}
.radar-welcome h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #fff;
}
.radar-welcome p {
    margin: 8px 0;
    font-size: 20px;
    color: #fff;
}
.radar-ethics {
    font-size: 12px !important;
    color: #fff;
    margin-top: 20px;
    line-height: 1.4;
    text-align: left; /* ← Esto alinea el texto a la izquierda */
}
/* === RADAR MENU BUTTONS === */
.radar-menu {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Botones principales */
.radar-menu button,
.radar-dropdown-toggle {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.radar-menu button:hover,
.radar-dropdown-toggle:hover {
    background-color: #444;
}

/* === RADAR DROPDOWN MENU === */
.radar-dropdown {
    position: relative;
}

/* Submenú oculto por defecto */
.radar-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    border-radius: 6px;
    padding: 8px 0;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 10;
}

/* Botones del submenú */
.radar-dropdown-menu button {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    text-align: left;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.radar-dropdown-menu button:hover {
    background-color: #333;
}

.radar-dropdown-menu {
    display: none;
}
.radar-dropdown-menu.active {
    display: flex;
}

.filtro-btn {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.filtro-btn:hover {
    background-color: #444;
}

/* 
========================================
Contenedores de tarjetas (desactivado)
========================================

#nomadsflow-results,
#coliving-results,
#coworking-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
}
*/


