/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --bg: #f5f5f5;
  --surface: #fff;
  --ink: #111;
  --muted: #666;
  --line: #d9d9d9;
  --accent: #111;
  --success-bg: #edf8ee;
  --success-ink: #176433;
  --error-bg: #fdeeee;
  --error-ink: #972c2c;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.start-shell {
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.start-button {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  min-width: 220px;
  min-height: 64px;
  padding: 0 28px;
  font-size: 1rem;
  font-weight: 600;
}

.start-error {
  color: var(--error-ink);
  margin: 0;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.meeting-shell {
  padding: 24px;
}

.meeting-frame {
  max-width: 960px;
  margin: 0 auto;
}

.meeting-topbar {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  display: flex;
}

.meeting-link-back {
  color: var(--muted);
}

.status-pill {
  border: 1px solid var(--line);
  background: var(--surface);
  text-transform: capitalize;
  border-radius: 999px;
  align-items: center;
  padding: 8px 12px;
  display: inline-flex;
}

.invite-row, .meeting-controls, .meeting-panels, .lobby-actions {
  gap: 12px;
  display: flex;
}

.invite-row {
  margin-bottom: 16px;
}

.invite-input, .join-input {
  border: 1px solid var(--line);
  background: var(--surface);
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  border-radius: 12px;
  padding: 0 14px;
}

.invite-button, .control-button, .join-button {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 48px;
  color: var(--ink);
  cursor: pointer;
  border-radius: 12px;
  padding: 0 16px;
}

.invite-button-muted {
  color: var(--muted);
}

.message-banner {
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 12px 14px;
}

.message-success {
  background: var(--success-bg);
  color: var(--success-ink);
}

.message-error {
  background: var(--error-bg);
  color: var(--error-ink);
}

.meeting-stage, .meeting-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
}

.meeting-stage {
  padding: 20px;
}

.meeting-title {
  margin: 0;
  font-size: 2rem;
}

.meeting-meta {
  color: var(--muted);
  margin: 8px 0 0;
}

.meeting-participants {
  gap: 12px;
  margin-top: 20px;
  display: grid;
}

.local-preview {
  border: 1px solid var(--line);
  background: #111;
  border-radius: 16px;
  place-items: center;
  min-height: 360px;
  margin-top: 20px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.local-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 360px;
  transform: scaleX(-1);
}

.local-preview-empty {
  color: #fff;
  text-align: center;
  background: #111;
  align-content: center;
  place-items: center;
  gap: 16px;
  padding: 24px;
  display: grid;
  position: absolute;
  inset: 0;
}

.local-preview-empty p {
  color: #cfcfcf;
  margin: 0;
}

.remote-media-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
  display: grid;
}

.remote-media-tile {
  background: #111;
  border-radius: 16px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.remote-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 180px;
}

.remote-media-label {
  color: #fff;
  background: #000000a3;
  border-radius: 999px;
  padding: 6px 8px;
  font-size: .85rem;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.remote-media-empty {
  border: 1px dashed var(--line);
  color: var(--muted);
  border-radius: 14px;
  margin-top: 16px;
  padding: 14px;
}

.meeting-participant {
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  display: flex;
}

.participant-name {
  font-size: 1rem;
}

.participant-state {
  color: var(--muted);
  text-transform: capitalize;
}

.meeting-controls {
  flex-wrap: wrap;
  margin-top: 16px;
}

.meeting-panels {
  align-items: stretch;
  margin-top: 16px;
}

.meeting-panel {
  flex: 1 1 0;
  padding: 16px;
}

.panel-title {
  margin: 0 0 16px;
  font-size: 1rem;
}

.join-form {
  gap: 12px;
  display: grid;
}

.join-button {
  background: var(--accent);
  color: #fff;
}

.lobby-list {
  gap: 12px;
  display: grid;
}

.lobby-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: flex;
}

.invite-empty {
  color: var(--muted);
}

@media (max-width: 720px) {
  .meeting-shell {
    padding: 16px;
  }

  .invite-row, .meeting-panels, .meeting-topbar, .lobby-item {
    flex-direction: column;
    align-items: stretch;
  }

  .local-preview, .local-video {
    min-height: 240px;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/