
/* General Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #F4EBE8; /* Use a darker shade of the background color */
  color: #4A3B37; /* Use a darker shade for the text color */
}

/* Navbar Styling */
.navbar {
  background-color: #2A769F; /* Use a darker shade of the main color blue */
  color: #FFFFFF;
  padding: 10px;
}

.navbar-brand {
  font-size: 24px;
  font-weight: bold;
}

.nav-link {
  color: #FFFFFF;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 12px;
}

.nav-link:hover {
  background-color: #155D7A; /* Use a darker shade for the hover background color blue */
  border-radius: 4px;
}

aside {
  background-color: #155D7A; /* Use a darker shade of the main color blue */
}

/* Sidebar Styling */
.sidebar {
  background-color: #155D7A; /* Use a darker shade of the main color blue */
  color: #FFFFFF;
}

.sidebar h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.sidebar .nav-link {
  margin-bottom: 10px;
}

.sidebar .nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
}

.sidebar a:hover {
  color: #0D3B4E; /* Use a darker shade for the link color on hover blue */
}

/* Main Content Styling */
.main-content {
  margin-left: 250px; /* Match the sidebar width to create space for the content */
  padding: 20px;
}

/* Sample Usage */

/* process flow styling */
.process-flow {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}
