body {
  margin: 0;
  font-family: Arial;
}

/* HEADER */
.header {
  background: #0d1b2a;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.menu-btn {
  font-size: 22px;
  margin-right: 10px;
  cursor: pointer;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  left: -250px;
  top: 0;
  width: 250px;
  height: 100%;
  background: #1b263b;
  transition: 0.3s;
  padding-top: 60px;
}

.sidebar a {
  display: block;
  color: white;
  padding: 15px;
  text-decoration: none;
}

/* ACTIVE */
.sidebar.active {
  left: 0;
}

/* CONTAINER */
.container {
  padding: 20px;
}

/* ROADMAP BACKGROUND */
.roadmap-bg {
  background: linear-gradient(to right, #141e30, #243b55);
  min-height: 100vh;
  color: white;
}

/* PHASE */
.phase {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  margin: 15px;
}

.phase.ongoing {
  border-left: 5px solid orange;
}
/* PHASE BOX */
.phase {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  margin: 15px;
}

/* HEADER INSIDE */
.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* STATUS BADGE */
.status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* IN PROGRESS STYLE */
.in-progress {
  border-left: 5px solid orange;
}

.in-progress .status {
  background: orange;
  color: white;
}
/* COMMON */
.phase {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  margin: 15px;
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* 🕗 ONGOING */
.ongoing {
  border-left: 5px solid gray;
}

.ongoing .status {
  background: gray;
  color: white;
}

/* 🔄 IN PROGRESS */
.in-progress {
  border-left: 5px solid orange;
}

.in-progress .status {
  background: orange;
  color: white;
}

/* ✅ COMPLETED */
.completed {
  border-left: 5px solid green;
}

.completed .status {
  background: green;
  color: white;
}
/* SPIN ANIMATION */
.spin {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
