#nomadsflow-radar-full {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #121212;
    color: #f3f4f6;
    padding: 20px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 🧭 Título principal */
#radar-full-header h2 {
    font-size: 56px;
    font-weight: bold;
    color: #f7fafc;
    margin-bottom: 10px;
}

/* 👋 Saludo dinámico */
#radar-full-user-greeting {
    font-size: 18px;
    color: #edf2f7;
    margin-bottom: 10px;
}

/* 📍 Mensaje de eventos activos */
#radar-full-event-message {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

/* 🧠 Texto explicativo */
#radar-full-intro-text {
    font-size: 13px;
    color: #e2e8f0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 20px;
}

/* 🔘 Menú horizontal */
#radar-full-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

#radar-full-menu button {
    padding: 6px 12px;
    background: #2b6cb0;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#radar-full-menu button:last-child {
    background: #718096;
}

/* 🔢 Contadores superiores e inferiores */
#radar-counters-top,
#radar-counters-bottom {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 10px 0 20px;
    font-size: 14px;
    color: #f7fafc;
}

#radar-counters-top span,
#radar-counters-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
#radar-user-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  color: #e2e8f0;
}

#radar-user-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* ✅ Contador activo */
.radar-filter-button.active {
  background-color: #4299e1;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.radar-menu-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.radar-menu-button {
    background: #262626;
    color: #d1d5db;
    border: 1px solid #404040;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.radar-menu-button:hover {
    background: #374151;
}

.radar-menu-item {
    position: relative;
    display: inline-block;
}

.radar-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 2px solid #121212;
    color: white;
}

.radar-badge-red { background: #ef4444; }
.radar-badge-orange { background: #f59e0b; }

.radar-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    width: 400px;
    z-index: 1000;
    border: 1px solid #333;
}

.radar-panel-wide { width: 450px; }

.radar-panel-header {
    background: #262626;
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #404040;
}

.radar-panel-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.radar-panel-header p {
    margin: 4px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.radar-panel-body {
    padding: 20px;
}

.radar-panel-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.radar-sub-button {
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.radar-green { background: #10b981; }
.radar-green:hover { background: #059669; }

.radar-orange { background: #f59e0b; }
.radar-orange:hover { background: #d97706; }

.radar-purple { background: #8b5cf6; }
.radar-purple:hover { background: #7c3aed; }

.radar-panel-scroll {
    border-top: 1px solid #404040;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.radar-panel-placeholder {
    text-align: center;
    color: #6b7280;
}

.radar-panel-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
/* 👤 Avatar circular con imagen o inicial */
.radar-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3f4f6;
    font-weight: bold;
    font-size: 32px;
    margin: 0 auto 12px auto;
    border: 3px solid #404040;
    overflow: hidden;
    position: relative;
}

.radar-profile-avatar img.radar-avatar-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
/* 📝 Formulario de perfil: texto claro sobre fondo oscuro */
#profile-form,
#profile-form label,
#profile-form input,
#profile-form textarea,
#profile-form select,
#profile-form button,
#profile-form h4,
#profile-form p {
    color: #f3f4f6;
}

/* Campos de entrada */
#profile-form input,
#profile-form textarea,
#profile-form select {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
    margin-bottom: 12px;
    color: #f3f4f6;
}

/* Etiquetas */
#profile-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #e5e7eb;
}

/* Secciones del formulario */
.radar-form-section {
    margin-bottom: 24px;
}

/* Títulos de sección */
.radar-form-section h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f9fafb;
}

/* Notas aclaratorias */
.radar-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* Cuadrícula de campos */
.radar-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Cuadrícula de checkboxes */
.radar-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.radar-checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e5e7eb;
}
.radar-panel-header h3 {
    color: #f3f4f6; /* texto claro */
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
/* 📏 Aumentar tamaño de letra en el panel de perfil */
#profile-form,
#profile-form label,
#profile-form input,
#profile-form textarea,
#profile-form select,
#profile-form button,
#profile-form h4,
#profile-form p {
    font-size: 15px;
}

/* Títulos de sección */
#profile-form h4 {
    font-size: 16px;
    font-weight: 600;
}

/* Etiquetas */
#profile-form label {
    font-size: 14px;
}

/* Checkboxes */
.radar-checkbox-grid label {
    font-size: 14px;
}

/* Inputs y textareas */
#profile-form input,
#profile-form textarea,
#profile-form select {
    font-size: 15px;
}

/* Botones desplegables */
.radar-form-section > button {
    font-size: 15px;
}

.radar-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #e5e7eb;
}

/* 📝 Formulario de creación de eventos: texto claro sobre fondo oscuro */
#create-event-form,
#create-event-form label,
#create-event-form input,
#create-event-form textarea,
#create-event-form select,
#create-event-form button,
#create-event-form h4,
#create-event-form p {
    color: #f3f4f6;
    font-size: 15px;
}

#create-event-form input,
#create-event-form textarea,
#create-event-form select {
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
    margin-bottom: 12px;
    color: #f3f4f6;
}

#create-event-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #e5e7eb;
}

