/* Badge de empresa verificada */
.verified-badge {
  color: #185adb;
  font-size: 13px;
  margin-left: 2px;
}

/* Vista Kanban de candidaturas: filas por estado (swimlanes), no columnas */
.kanban-board {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kanban-column {
  background: #f7f5f6;
  border-radius: 12px;
  padding: 14px;
}

.kanban-column h4 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #756b70;
  padding: 0 4px;
}

.kanban-count {
  color: #b0a4a8;
  font-weight: 700;
}

.kanban-column-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  min-height: 40px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.kanban-column-cards:empty::after {
  content: 'Sin candidaturas en este estado.';
  font-size: 12px;
  color: #a89ba0;
  padding: 8px 4px;
}

.kanban-column-cards .candidate-row {
  background: #fff;
  border: 1px solid #ece4e6;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(58, 30, 36, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 280px;
  width: 280px;
}

/* Candidatura rápida en tarjetas de oferta */
.quick-apply-form { margin-top: 10px; }

.quick-apply-btn {
  background: #185adb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quick-apply-btn:hover { background: #123f9e; }

.quick-apply-done {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #12855a;
}

/* Reseñas de empresa */
.review-toggle-btn {
  border: 1px solid #f0a500;
  background: #fff8e8;
  color: #885900;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-form {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  background: #fffaf0;
  border: 1px solid #f0e0b8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-rating input { position: absolute; opacity: 0; pointer-events: none; }

.star-rating label {
  font-size: 22px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f0a500;
}

.review-form textarea {
  border: 1px solid #dce2ed;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  resize: vertical;
}

/* Rating de empresa en tarjetas/detalle */
.company-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #885900;
  font-weight: 700;
  margin-left: 6px;
}

.company-rating i { color: #f0a500; }

/* Campanita de notificaciones */
.notif-bell-wrap { position: relative; display: flex; align-items: center; }

.notif-bell-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--navy, #222);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
}

.notif-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #d7192a;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 99px;
  padding: 1px 5px;
  min-width: 16px;
  text-align: center;
  line-height: 1.4;
}

.notif-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(8, 15, 30, 0.18);
  z-index: 60;
  border: 1px solid #ece4e6;
}

.notif-dropdown-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #ece4e6;
  font-size: 13px;
}

.notif-dropdown-head button {
  border: none;
  background: none;
  color: #185adb;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.notif-empty {
  padding: 24px 14px;
  text-align: center;
  font-size: 12px;
  color: var(--muted, #756b70);
  margin: 0;
}

.notif-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  border-bottom: 1px solid #f5f0f1;
  font-size: 12px;
  color: var(--ink, #222);
  text-decoration: none;
}

.notif-item:last-child { border-bottom: none; }

.notif-item.is-unread {
  background: #fff8e8;
  font-weight: 600;
}

.notif-item small { color: var(--muted, #756b70); font-weight: 400; }

@media (max-width: 700px) {
  .notif-dropdown { width: 280px; right: -60px; }
}
