  #banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9fdfa;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: 'Calibri', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  #banner .logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  #banner .logo-container img {
    height: 50px;
    object-fit: contain;
  }

  #banner .title {
    flex-grow: 1;
    text-align: center;
    color: #298A08;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
  }

   #logindiv {
    float: right;
    vertical-align: middle;
  }

  #loginButton {
    font-family: 'Calibri', Helvetica, sans-serif;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(101, 66, 255, 0.4);
    transition: all 0.3s ease;
    float: right;
    user-select: none;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
  }

  #loginButton:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    box-shadow: 0 6px 18px rgba(101, 66, 255, 0.6);
    transform: scale(1.05);
  }

  #loginButton:focus {
    outline: none;
  }

  #loggedindiv {
    float: right;
    vertical-align: middle;
    font-family: Calibri, sans-serif;
    font-size: 14px;
    margin-right: 10px;
    font-weight: bold;
  }

  /* Optional: Responsive adjustments */
  @media (max-width: 600px) {
    #banner {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    #banner .title {
      font-size: 24px;
      letter-spacing: 1px;
    }

    #login {
      justify-content: center;
    }
  }

.docs a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  padding: 8px 10px;
  text-decoration: none;
  color: #222;
  background: #f5f7ff;
  border-left: 4px solid #d32f2f;
  border-radius: 6px;
  transition: 0.2s;
}

.docs a:hover {
  background: #eef1ff;
  transform: translateX(4px);
}

.docs span {
  width: 26px;
  height: 26px;
  background: #d32f2f;
  border-radius: 4px;
  position: relative;
}

.docs span::after {
  content: "PDF";
  position: absolute;
  color: #fff;
  font-size: 9px;
  font-weight: bold;
  left: 4px;
  top: 8px;
}

