/* Aurora Pro — Social batch export modal */

#proSocialBatchModal {
  position: fixed;
  inset: 0;
  z-index: 115;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 23, .72);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}

#proSocialBatchModal.open {
  opacity: 1;
  visibility: visible;
}

#proSocialBatchModal .pro-social-card {
  width: min(36rem, 100%);
  max-height: min(88dvh, 640px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  background: rgba(15, 23, 42, .97);
  border: 1px solid rgba(251, 146, 60, .22);
  box-shadow: 0 28px 70px -24px rgba(0, 0, 0, .9);
}

.pro-social-list {
  overflow-y: auto;
  padding: 0 .25rem .5rem;
  display: grid;
  gap: .4rem;
}

.pro-social-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .65rem;
  border-radius: .7rem;
  border: 1px solid rgba(148, 163, 184, .14);
  background: rgba(148, 163, 184, .05);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}

.pro-social-row:hover,
.pro-social-row.on {
  border-color: rgba(251, 146, 60, .45);
  background: rgba(251, 146, 60, .08);
}

.pro-social-row input {
  accent-color: #fb923c;
  width: 16px;
  height: 16px;
}

.pro-social-row .dims {
  margin-left: auto;
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}
