/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Global MeetIQ styles (Figma-aligned) */
:root {
  --miq-primary: #2f7dbc;
  --miq-primary-600: #256ca6;
  --miq-text: #111827;
  --miq-muted: #6b7280;
  --miq-border: #e2e8f0;
  --miq-bg: #f0f5fb;
  --miq-surface: #ffffff;
  --miq-surface-2: #f1f5f9;
  --miq-danger: #dc2626;
  --miq-success: #16a34a;
  --miq-radius: 12px;
  --miq-radius-lg: 16px;
  --miq-shadow: 0 4px 16px rgba(47, 125, 188, 0.10);
  /* section accent tints */
  --tint-blue: rgba(47, 125, 188, 0.07);
  --tint-green: rgba(22, 163, 74, 0.07);
  --tint-purple: rgba(124, 58, 237, 0.06);
  --tint-amber: rgba(245, 158, 11, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  background: var(--miq-bg);
  color: var(--miq-text);
}

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

button,
input,
textarea {
  font: inherit;
}

.miq-container {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 20px 20px 32px;
}

.miq-page-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.miq-muted {
  color: var(--miq-muted);
}

.miq-card {
  background: var(--miq-surface);
  border: 1px solid var(--miq-border);
  border-radius: var(--miq-radius);
  box-shadow: none;
}

.miq-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 9px 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.miq-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.miq-btn--primary {
  background: var(--miq-primary);
  color: #fff;
  border-color: var(--miq-primary);
}
.miq-btn--primary:hover:not(:disabled) {
  background: var(--miq-primary-600);
  border-color: var(--miq-primary-600);
  transform: translateY(-1px);
}

.miq-btn--outline {
  background: transparent;
  color: var(--miq-primary);
  border-color: var(--miq-primary);
}
.miq-btn--outline:hover:not(:disabled) {
  background: rgba(47, 125, 188, 0.08);
  transform: translateY(-1px);
}

.miq-btn--danger {
  background: transparent;
  color: var(--miq-danger);
  border-color: var(--miq-danger);
}
.miq-btn--danger:hover:not(:disabled) {
  background: rgba(220, 38, 38, 0.06);
  transform: translateY(-1px);
}

.miq-link {
  color: var(--miq-primary);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.miq-input {
  width: 100%;
  height: 42px;
  border-radius: 9px;
  border: 1px solid var(--miq-border);
  background: #f8fafc;
  padding: 0 14px;
  font-size: 13px;
  outline: none;
}
.miq-input:focus {
  border-color: rgba(47, 125, 188, 0.85);
  box-shadow: 0 0 0 3px rgba(47, 125, 188, 0.12);
  background: #fff;
}

.miq-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.miq-modal {
  width: min(680px, 100%);
  background: #fff;
  border-radius: var(--miq-radius-lg);
  box-shadow: var(--miq-shadow);
  border: 1px solid var(--miq-border);
  overflow: hidden;
}

.miq-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--miq-border);
}
.miq-modal-header .miq-modal-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
.miq-modal-header .miq-modal-subtitle {
  margin: 6px 0 0;
  color: var(--miq-muted);
  font-size: 12px;
  font-weight: 500;
}

.miq-icon-btn {
  appearance: none;
  background: transparent;
  border: none;
  padding: 8px;
  margin: -6px -6px 0 0;
  cursor: pointer;
  color: #111827;
  line-height: 0;
}

.miq-modal-body {
  padding: 14px 20px 16px;
}

.miq-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 20px;
}

.miq-btn--full {
  width: 100%;
  height: 46px;
  font-size: 14px;
  border-radius: 9px;
}

.miq-tabs {
  display: flex;
  gap: 34px;
  align-items: flex-end;
  border-bottom: 1px solid var(--miq-border);
}

.miq-tab {
  appearance: none;
  background: transparent;
  border: none;
  padding: 10px 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.miq-tab.active {
  color: var(--miq-primary);
  border-bottom-color: var(--miq-primary);
}

.miq-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  flex: 0 0 auto;
}

.miq-avatar--gray {
  background: #d1d5db;
  color: #fff;
}

.miq-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--miq-border);
  background: #fff;
  font-weight: 600;
  color: #374151;
}

@media (max-width: 640px) {
  .miq-container {
    padding: 18px 16px 28px;
  }
  .miq-page-title {
    font-size: 20px;
  }
}

/*# sourceMappingURL=styles.css.map*/