/* BCM Ofertas de Empleo — tabla + filtros */

.boe-ofertas {
  --boe-border: #d0d7de;
  --boe-head: #1a365d;
  --boe-accent: #0b6bcb;
  --boe-accent-dark: #084e96;
  --boe-bg-filter: #eef3f9;
  width: 100%;
  margin: 1.25rem 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #1f2933;
}

/* —— Filtros —— */
.boe-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  background: var(--boe-bg-filter);
  border: 2px solid #c5d4e8;
  border-radius: 8px;
}

.boe-filter {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 160px;
  flex: 1 1 160px;
}

.boe-filter label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--boe-head);
}

.boe-filter-select {
  font-size: 1rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid #9db0c9;
  border-radius: 6px;
  background: #fff;
  color: #1f2933;
  min-height: 2.5rem;
}

.boe-filter-reset {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  border: 1px solid #9db0c9;
  border-radius: 6px;
  background: #fff;
  color: var(--boe-head);
  cursor: pointer;
  align-self: flex-end;
}

.boe-filter-reset:hover {
  background: #e2eaf4;
}

.boe-filter-count {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: #4a5568;
}

.boe-filter-empty {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: 6px;
}

/* —— Tabla —— */
.boe-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.boe-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 1.05rem;
}

.boe-table th,
.boe-table td {
  border: 1px solid var(--boe-border);
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: middle;
}

.boe-table thead th {
  background: var(--boe-head);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.boe-table tbody tr:nth-child(even) {
  background: #f6f8fa;
}

.boe-table tbody tr.boe-row-hidden {
  display: none;
}

.boe-inscripcion {
  text-align: center !important;
  vertical-align: middle;
}

.boe-inscripcion a {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  background: var(--boe-accent);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.boe-inscripcion a:hover {
  background: var(--boe-accent-dark);
}

.boe-vacio,
.boe-error {
  padding: 0.85rem 1.1rem;
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: 6px;
  font-size: 1.05rem;
}

@media (max-width: 720px) {
  .boe-ofertas {
    font-size: 1rem;
  }

  .boe-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .boe-filter,
  .boe-filter-reset {
    width: 100%;
    align-self: stretch;
  }

  .boe-table {
    min-width: 0;
    font-size: 1rem;
  }

  .boe-table thead {
    display: none;
  }

  .boe-table,
  .boe-table tbody,
  .boe-table tr,
  .boe-table td {
    display: block;
    width: 100%;
  }

  .boe-table tbody tr.boe-row-hidden {
    display: none;
  }

  .boe-table tr {
    margin-bottom: 0.9rem;
    border: 1px solid var(--boe-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }

  .boe-table td {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 0.55rem 0.85rem 0.55rem 44%;
    position: relative;
    text-align: left !important;
  }

  .boe-table td:last-child {
    border-bottom: none;
  }

  .boe-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0.75rem;
    top: 0.55rem;
    width: 40%;
    font-weight: 700;
    font-size: 0.8rem;
    color: #555;
  }

  .boe-inscripcion {
    text-align: center !important;
    padding-left: 0.85rem !important;
  }

  .boe-inscripcion::before {
    display: none;
  }
}
