/* General light theme body styles */
body {
  background-color: #f5f5f5; /* Light grey background */
  color: #333; /* Dark text for contrast */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header styles */
header {
  background-color: #fff; /* White header background */
  border-bottom: 1px solid #ddd; /* Light grey border at the bottom */
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.header-style-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Logo and brand name */
.header-style-logo {
  display: flex;
  align-items: center;
}

.header-style-logo img {
  height: 40px; /* Adjust logo size */
  margin-right: 10px;
}

header h1 a {
  color: #333; /* Darker color for the brand name */
  font-size: 1.8rem;
  font-weight: 600; /* Bolder font */
  text-decoration: none;
}

/* Navigation links */
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px; /* Increased space between links */
}

header nav ul li a {
  color: #555; /* Slightly darker grey for navigation text */
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

header nav ul li a:hover {
  color: #0070c9; /* United's blue on hover */
  background-color: #f0f8ff; /* Light background on hover */
}

/* User and login icons/buttons */
.header-style-header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-style-header-icons button {
  background-color: #0070c9; /* United's primary blue */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.header-style-header-icons button:hover {
  background-color: #005aa8; /* Darker blue on hover */
}

/* Profile dropdown */
.header-style-profile-dropdown > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

.header-style-pfp {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 8px;
  border: 2px solid #0070c9; /* Blue border for the profile picture */
  object-fit: cover;
}

.header-style-profile-dropdown .header-style-dropdown-content {
  background-color: #fff; /* White dropdown background */
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-style-profile-dropdown .header-style-dropdown-header {
  padding: 12px 15px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.header-style-profile-dropdown .header-style-dropdown-header p {
  color: #888; /* Lighter grey for the role text */
  font-size: 0.85rem;
}

.header-style-profile-dropdown .header-style-dropdown-content a {
  color: #555;
  padding: 10px 15px;
}

.header-style-profile-dropdown .header-style-dropdown-content a:hover {
  background-color: #f0f8ff;
  color: #0070c9;
}

.header-style-profile-dropdown .header-style-dropdown-divider {
  border-top: 1px solid #eee;
}

/* Image changes */
.header-style-logo img {
  content: url('https://softverte.com/TEST/image.php?id=103');
}

/* Remove the old CSS from the HTML file to avoid conflicts */
/* The provided code already has this CSS, so you will need to replace it */