:root {
    --green: #1cbd2c;
    --grey: #c4c4c4;
    --white: #ffffff;
    --padding: 1em;
}

.mainWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.statusBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.pBar {
    content: "";
    height: 0.3em;
    border-radius: 0 0 0.15em 0.15em;
    background-color: var(--green);
    max-width: 100%;
    margin: 10px #000000 solid;
    position: absolute;
    left: 0;
    width: 0%;
}

.node {
    background-color: var(--grey);
    height: 3em; /* Increased height for better visibility */
    width: 3em; /* Increased width for better visibility */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.2em; /* Adjust font size as needed */
    color: var(--white); /* Text color inside node */
}

.node .main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.node.done {
    background-color: var(--green);
}

.node .main.done {
    border: 0.2em solid var(--green);
}

.node .text {
    font-weight: 500;
    color: var(--grey);
    text-align: center;
    position: absolute;
    top: 3.5em; /* Position text below the node */
    font-size: 0.9em;
    width: 100%;
}


/* Navbar container */
.custom-navbar {
  background-color: #f905e1; /* Pink background */  
  overflow: hidden;
  margin-top: 10px;
}

/* Navbar list */
.custom-navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.custom-navbar li {
  margin: 0;
}

.custom-navbar a {
  display: block;
  color: #fff; /* White text color for all links */
  padding: 15px 30px; /* Increase padding for wider menu items */
  text-decoration: none; /* Remove underline from links */
  background-color: transparent;
}

.custom-navbar a:hover {
  background-color: #87CEFA; /* Light blue background on hover */
  color: #000; /* Dark text color on hover */
}

.custom-navbar .active a {
  background-color: #45cb44; /*light green color */
  color: #fff; /* White text color for active item */
}