:root {
  --avesmap-blue: #2699d1;
  --avesmap-green: #7fbc5d;
  --avesmap-onyx: #0e0e2c;
  --avesmap-evergreen: #2db87a;
  --avesmap-slate: #4a4a68;
  --avesmap-light-slate: #8c8ca1;
  --avesmap-dorian: #ecf1f4;
  --avesmap-cloud: #fafcfe;
}

[data-theme="light"] {
  --pico-primary: var(--avesmap-blue);
  --pico-primary-hover: #1e7ab0;
  --pico-primary-inverse: #fff;
  --pico-background-color: var(--avesmap-cloud);
  --pico-color: var(--avesmap-slate);
  --pico-muted-color: var(--avesmap-light-slate);
  --pico-border-color: var(--avesmap-dorian);
  --pico-card-background-color: #fff;
  --pico-card-border-color: var(--avesmap-dorian);
}

body {
  background-color: var(--avesmap-cloud);
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--avesmap-onyx) !important;
}

a {
  color: var(--avesmap-green);
}

a:hover {
  color: var(--avesmap-blue);
}

.container {
  max-width: 960px;
}

.hidden {
  display: none !important;
}

table {
  font-size: 0.9rem;
}

th {
  color: var(--avesmap-onyx);
}

td {
  color: var(--avesmap-slate);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-pending {
  background: #fef3c7;
  color: #b45309;
}

.badge-approved {
  background: #d1fae5;
  color: var(--avesmap-evergreen);
}

.badge-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.badge-ask_for_delete {
  background: #ffedd5;
  color: #9a3412;
}

.error-msg {
  background: #fee2e2;
  color: #b91c1c;
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

button.secondary,
.secondary {
  opacity: 0.9;
}

/* Botones principales: gradiente */
button[type='submit'],
.btn-primary {
  background: linear-gradient(104deg, #2fb0ef 13.23%, #69a647 163.77%) !important;
  border: none !important;
  color: #fff !important;
}

button[type='submit']:hover,
.btn-primary:hover {
  opacity: 0.95;
  filter: brightness(1.05);
}

/* Logo e iconos */
.logo-header {
  height: 64px;
  width: auto;
  display: block;
}

.nav-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Marcas de agua — opacidad 100%, tamaño visible */
.watermarks {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-end;
  opacity: 1;
  pointer-events: none;
  z-index: 10;
}

.watermarks img {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .watermarks {
    bottom: 0.75rem;
    right: 0.75rem;
    gap: 1rem;
  }

  .watermarks img {
    height: 40px;
  }
}

