
  .corporate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  box-shadow: 0 0 8px rgba(0, 80, 160, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.corporate-table thead {
  background: linear-gradient(90deg, #003366, #0059b3);
  color: white;
  text-align: left;
}

.corporate-table th, .corporate-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e1e9f8;
}

.corporate-table tbody tr:hover {
  background-color: #e6f0ff;
}

.status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  display: inline-block;
  text-align: center;
}

.status.in-progress {
  background-color: #ff9800;
}

.status.completed {
  background-color: #4caf50;
}

.status.delayed {
  background-color: #f44336;
}

    /* Reset */
    * {
      box-sizing: border-box;
    }
    body, html {
      margin: 0; padding: 0;
      height: 100vh;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f0f4f8;
      display: flex;
      flex-direction: column;
    }

    /* HEADER */
    header {
      position: absolute;
      top: 0; left: 0; right: 0;

      height: 160px;
      background: linear-gradient(90deg, #003366, #0059b3);
      color: white;
      display: flex;
      align-items: center;
      padding: 0 25px;
      font-weight: 700;
      font-size: 1.4rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.25);
      z-index: 1002;
    }

    /* FOOTER */
    footer {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      height: 50px;
      background: linear-gradient(90deg, #002244, #004080);
      color: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
      z-index: 1002;
    }

    /* CONTAINER */
    .container {
      flex: 1;
      margin-top: 160px; /* header height */
      margin-bottom: 50px; /* footer height */
      display: flex;
      height: calc(100vh - 110px);
      overflow: hidden;
    }

    /* SIDEBAR */
    .sidebar {

      width: 220px;
      background: linear-gradient(180deg, #004080, #0070e0);
      color: white;
      box-shadow: 2px 0 8px rgba(0,0,0,0.25);
      display: flex;
      flex-direction: column;
      user-select: none;
      overflow-y: auto;
      padding-top: 10px;
    }

    /* MENU */
    ul.menu {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    ul.menu li {
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    ul.menu li a {
      display: block;
      padding: 15px 25px;
      color: white;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      position: relative;
      transition: background-color 0.25s ease;
      cursor: pointer;
      user-select: none;
    }
    ul.menu li a:hover,
    ul.menu li a:focus {
      background-color: rgba(255,255,255,0.15);
      outline: none;
    }

    /* ARROW */
    .arrow {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      font-size: 14px;
      transition: transform 0.3s ease;
      user-select: none;
    }
    .arrow.down {
      transform: translateY(-50%) rotate(90deg);
    }

    /* SUBMENU */
    ul.submenu {
      list-style: none;
      padding-left: 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background-color: rgba(255, 255, 255, 0.1);
    }
    ul.submenu.open {
      max-height: 400px; /* enough for submenu */
    }
    ul.submenu li a {
      font-weight: 400;
      font-size: 0.9rem;
      padding: 10px 25px;
      color: #cce0ff;
    }
    ul.submenu li a:hover,
    ul.submenu li a:focus {
      background-color: rgba(255,255,255,0.3);
      color: white;
      outline: none;
    }

    /* CONTENT */
    main.content {
      flex-grow: 1;
      padding: 25px 30px;
      background: white;
      overflow-y: auto;
      box-shadow: inset 0 0 10px rgb(0 0 0 / 0.1);
      border-radius: 6px;
      margin-left: 1rem;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .sidebar {
        position: fixed;
        top: 60px;
        left: 0;
        height: calc(100vh - 110px);
        z-index: 1100;
        width: 220px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
      }
      .sidebar.open {
        transform: translateX(0);
      }

      main.content {
        margin-left: 0;
        padding: 15px 20px;
      }

      /* Hamburger */
      .hamburger {
        display: flex;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1200;
        width: 30px;
        height: 22px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
      }
      .hamburger div {
        height: 3.5px;
        background: #004080;
        border-radius: 2px;
      }
      .hamburger:hover div {
        background: #ffcc00;
      }
    }

    /* Hide hamburger on desktop */
    .hamburger {
      display: none;
    }

 .corporate-table1 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  box-shadow: 0 0 8px rgba(0, 80, 160, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.corporate-table1 thead {
  background: linear-gradient(90deg, #003366, #0059b3);
  color: white;
  text-align: left;
}

.corporate-table1 th, .corporate-table1 td {
  padding: 12px 15px;
  border-bottom: 1px solid #e1e9f8;
}


