/* ==============================
   Microsoft Support Page Styles
   ============================== */

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f5f5f5;
  color: #1a1a1a;
}

/* ---- Top Navbar Row 1 ---- */

.ms-topbar-main {
  background-color: #1a1a1a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.ms-logo-link {
  text-decoration: none;
  flex-shrink: 0;
}

.ms-logo-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 20px;
  height: 20px;
}

.ms-logo-squares-sm {
  width: 16px;
  height: 16px;
  gap: 1.5px;
}

.sq {
  display: block;
  border-radius: 1px;
}

.sq-red {
  background: #f25022;
}

.sq-green {
  background: #7fba00;
}

.sq-blue {
  background: #00a4ef;
}

.sq-yellow {
  background: #ffb900;
}

.ms-logo-text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.ms-topbar-divider {
  width: 1px;
  height: 18px;
  background: #555;
  margin: 0 8px;
  flex-shrink: 0;
}

.ms-topbar-links {
  flex-wrap: nowrap;
}

.ms-topbar-link {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 4px 7px;
  white-space: nowrap;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}

.ms-topbar-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.ms-topbar-buybtn {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid #fff;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.ms-topbar-buybtn:hover {
  background: #fff;
  color: #1a1a1a;
}

.ms-topbar-right-link {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 4px 7px;
  white-space: nowrap;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
  gap: 4px;
}

.ms-topbar-right-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ---- Secondary Nav (Support links) ---- */

.ms-subnav {
  background: #fff;
  border-bottom: 1px solid #d8d8d8;
  position: sticky;
  top: 44px;
  z-index: 999;
}

.ms-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 11px 10px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.ms-subnav-link:hover {
  color: #0067b8;
}

.ms-subnav-link.active {
  color: #0067b8;
  border-bottom-color: #0067b8;
  font-weight: 600;
}

.ms-subnav-chevron {
  font-size: 0.6rem;
  opacity: 0.7;
}

/* ---- Dismissible Banner ---- */

.ms-banner {
  background: #f7f7f7;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.82rem;
  color: #1a1a1a;
}

.ms-banner-text {
  color: #444;
  line-height: 1.5;
}

.ms-banner-learn {
  color: #0067b8;
  font-weight: 500;
  text-decoration: none;
}

.ms-banner-learn:hover {
  text-decoration: underline;
}

.ms-banner-close {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}

.ms-banner-close:hover {
  color: #000;
}

/* ---- Hero ---- */

.ms-hero {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.ms-breadcrumb {
  font-size: 0.8rem;
}

.ms-breadcrumb a {
  color: #0067b8;
  text-decoration: none;
}

.ms-breadcrumb a:hover {
  text-decoration: underline;
}

.ms-breadcrumb .breadcrumb-item.active {
  color: #555;
}

.ms-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #888;
}

.ms-page-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.ms-page-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0;
}

/* ---- Download Card ---- */

.ms-download-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ms-download-icon i {
  font-size: 3rem;
  color: #0067b8;
}

.ms-download-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.ms-download-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.ms-download-btn {
  background-color: #0067b8;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.ms-download-btn:hover {
  background-color: #005a9e;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,103,184,0.3);
}

.ms-download-note {
  font-size: 0.78rem;
  color: #777;
  margin-bottom: 0;
}

.ms-download-note i {
  color: #107c10;
}

/* ---- Info Cards ---- */

.ms-info-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.ms-info-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #0067b8;
}

.ms-info-icon i {
  font-size: 2rem;
  color: #0067b8;
}

.ms-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.ms-info-text {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.55;
}

.ms-info-link {
  color: #0067b8;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.ms-info-link:hover {
  text-decoration: underline;
}

/* ---- Steps Section ---- */

.ms-steps-section {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem 1.5rem;
}

.ms-steps-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
}

.ms-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0067b8;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
}

.ms-step-label {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0;
}

.ms-step-arrow {
  font-size: 1.5rem;
  color: #ccc;
}

/* ---- Footer ---- */

.ms-footer {
  background: #f2f2f2;
  border-top: 1px solid #d6d6d6;
}

.ms-footer-brand {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
}

.ms-footer-link {
  font-size: 0.78rem;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
}

.ms-footer-link:hover {
  color: #0067b8;
  text-decoration: underline;
}

