html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header Styling - Ericsson inspired dark theme */
#header {
  background-color: #1a2f3f !important;
  border-bottom: 2px solid #0d1b28 !important;
}

#header .flex.items-center.gap-3 a .text {
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

#header span {
  color: #ffffff !important;
}

#header nav a {
  color: #b8c5d6 !important;
}

#header nav a:hover {
  color: #ffffff !important;
}

/* Accordion Component UI Optimization */
details summary::-webkit-details-marker {
  display: none;
}
details summary {
  list-style: none;
}

/* Interactive Forms UI overrides */
input:focus, textarea:focus {
  outline: none;
  border-color: var(--p, #0077cc) !important;
  box-shadow: 0 0 0 2px rgba(0, 119, 204, 0.1);
}