/* WinkMeet admin shell — sidebar + main content */
.admin-shell {
  display: flex;
  min-height: 100vh;
  background: #f4f6f9;
}

.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #1a1d24;
  color: #e8eaed;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  align-self: flex-start;
  min-height: 100vh;
}

.admin-brand {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0 1.25rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.75rem;
}

.admin-nav-link {
  display: block;
  padding: 0.5rem 1.25rem;
  color: #b8bcc8;
  text-decoration: none;
  font-size: 0.92rem;
  border-left: 3px solid transparent;
}

.admin-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.admin-nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #5b8def;
}

.admin-content {
  flex: 1;
  min-width: 0;
  max-width: 1400px;
}

@media (max-width: 768px) {
  .admin-shell {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    min-height: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.75rem;
  }

  .admin-brand {
    width: 100%;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
  }

  .admin-nav-link {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border-left: none;
  }

  .admin-nav-link.active {
    background: rgba(91, 141, 239, 0.35);
  }
}

.table-compact td,
.table-compact th {
  vertical-align: middle;
  font-size: 0.9rem;
}

.row-call-long {
  background-color: rgba(255, 193, 7, 0.12) !important;
}

.row-call-active {
  background-color: rgba(25, 135, 84, 0.08) !important;
}

.doc-preview {
  max-height: 120px;
  max-width: 200px;
  object-fit: contain;
  border: 1px solid #dee2e6;
  border-radius: 6px;
}

.pending-row {
  background-color: #fffbeb !important;
}

.dating-chat-card {
  overflow: hidden;
}

.dating-chat-scroll {
  max-height: 62vh;
  overflow-y: auto;
  padding: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #f3f4f6 100%);
}

.dating-chat-row {
  display: flex;
  margin-bottom: 12px;
}

.dating-chat-row.from-a {
  justify-content: flex-start;
}

.dating-chat-row.from-b {
  justify-content: flex-end;
}

.dating-chat-bubble {
  max-width: min(78%, 680px);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.dating-chat-row.from-a .dating-chat-bubble {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.dating-chat-row.from-b .dating-chat-bubble {
  background: #e7f0ff;
  border: 1px solid #cfe0ff;
}

.dating-chat-author {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 4px;
}

.dating-chat-text {
  font-size: 14px;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
  color: #111827;
}

.dating-chat-meta {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  color: #6b7280;
}
