body {
    font-family: Arial, sans-serif;
    background: #f3f3f3;
    margin: 0;
    padding: 0;
  }
  
  /* Navbar */
  .navbar {
    background: #4066b9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    color: white;
    flex-wrap: wrap;
    height: 50px;
  }

  
  
  /* Logo */
  .brand img {
    width: 60px;
    height: 65px;
    margin-top: -8px;
  }
  
  /* Nav Links Container */
  .nav-links {
    display: flex;
    gap: 25px;
    margin-left: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  
  /* Nav Link Style */
  .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 10px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 8px;
  }
  
  .nav-links a.active {
    color: #000000;
    background-color: white;
    font-weight: bold;
  }
  
  .nav-links a:not(.active):hover {
    background-color: white;
    color: black;
    font-weight: bold;
  }
  
  /* Profile image on far right */
  .profile {
    margin-left: auto;
  }
  
  .profile img {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    object-fit: cover;
    border: 2px solid white;
  }

  .logout, .login {
    margin-left: auto;
    margin-bottom: 15px;
  }
  
  .logout button, .login button {
    background-color: white;
    color: #4066b9;
    border: 2px solid white;
    border-radius: 6px;
    padding: 8px 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .logout button:hover, .login button:hover {
    background-color: #3052a1;
    color: white;
    border-color: #3052a1;
  }
  /* Main content container */
  .container {
    max-width: 100%;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
    max-height: 100%;
    height: 100%;

    margin: 0;
  }
  