body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1f2947;
  color: #e0e0ff;
}
header {
  background-color: #3b4a7c;
  padding: 10px 20px;
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 40px;
}
h1 {
  margin: 0;
  color: white;
}
.welcome-text {
  font-size: 0.9em;
  font-weight: bold;
  color: white;
}
nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.nav-link {
  color: white;
  text-decoration: none;
}
.nav-link.red-text {
  color: red;
  font-weight: bold;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #444d7c;
  padding: 10px;
  top: 100%;
  left: 0;
  z-index: 100;
}
.dropdown-menu a {
  color: white;
  display: block;
  padding: 5px 10px;
  text-decoration: none;
}
.dropdown-menu a.red-text {
  color: red;
  font-weight: bold;
}
.dropdown-menu.show {
  display: block;
}
.arrow {
  margin-left: 5px;
}
main {
  padding: 60px 30px;
}
.big-welcome {
  font-size: 1.8em;
  font-weight: bold;
}

/* Tab styles (copied from Brand Path) */
.tabs {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 40px;
  padding-left: 30px;
}
.tab {
  padding: 10px 16px;
  background: #1E293B;
  color: #F1F5F9;
  border: 1px solid #0EA5E9;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab:hover {
  background-color: #0EA5E9;
  color: #fff;
}
.tab.active {
  background-color: #06B6D4;
  color: #fff;
  border-color: #06B6D4;
}
