    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #dff0ff;
    }

    /* Moved title 1.5 inches right as requested */
    h1 {
      text-align: center;
      margin-top: 3rem;
      color: #2c3e50;
    }

    .login-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 30vh;
    }

    .login-box {
      background-color: white;
      border: 1px solid #ccc;
      padding: 20px 40px;
      border-radius: 1px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .login-box input[type="password"] {
      padding: 8px;
      width: 200px;
      margin-right: 10px;
    }

    .login-box button {
      padding: 8px 16px;
      background-color: #2c3e50;
      color: white;
      border: none;
      cursor: pointer;
    }

    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: 240px;
      height: 100vh;
      background-color: #f4f8fb;
      padding-top: 60px;
      box-shadow: 2px 0 5px rgba(0,0,0,0.1);
      /* Added padding-bottom so logout doesn't overlap content */
      padding-bottom: 60px; /* to make space for logout button at bottom */
    }

.sidebar a {
  display: block;
  font-weight: bold;
  padding: 12px 20px;
  color: #111;  /* 🔧 darker text */
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

    .sidebar a:hover {
      background-color: #ddeeff;
    }

    /* Logout link fixed at bottom of sidebar */
.logout-link {
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 200px;
  text-align: center;
  font-weight: bold;
  background-color: #f4f8fb;
  border-top: 1px solid #ccc;
  padding: 12px 0;
  color: #2c3e50;
  text-decoration: none;
  cursor: pointer;
}

    .logout-link:hover {
      background-color: #ddeeff;
    }

    .iframe-container {
      margin-left: 240px;
      padding: 20px;
    }

    iframe {
      width: 100%;
      height: calc(100vh - 60px);
      border: none;
    }

    .marquee-container {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100vw;
      background: #222;
      overflow: hidden;
      box-sizing: border-box;
      padding: 1px 0;
      z-index: 1000;
    }

    .marquee-text {
      display: inline-block;
      white-space: nowrap;
      color: #fff;
      font-size: 20px;
      font-weight: normal;
      padding-left: 100%;
      animation: marquee-left 15s linear infinite;
      font-family: Arial, sans-serif;
    }

    @keyframes marquee-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
