body {
  background-color: #f8f9fa; /* Replace with your preferred color code */
}

.flex-container{
    padding: 10px;
}
/* Styles for header */

header {
  background-color: #e9ecef;
  padding: 20px;
  text-align: center;
}

h1 {
  margin-bottom: 10px;
  font-size: 36px;
  color: #333;
}

.nav-tabs {
    background-color: #e9ecef;
    white-space: nowrap;
    flex-wrap: wrap;
    box-shadow: none;
    color: #000;
    border: none;
    border-radius: 0;
}

.tab-buttons
{
    background-color: #e9ecef;
    border: none;
}

.navbar
{
    background-color: #e9ecef;
    border: none;
}

.nav-tabs .nav-item .nav-link.active,
    .nav-tabs .nav-item .nav-link:focus {
      color: #1F51FF; /* Change text color for active/focused state */
    }
    
.nav-tabs .nav-link {
  color: #333;
}

.nav-tabs nav-link.active .nav-link:focus{
color: #0056b3;
}

.nav-tabs .nav-link.active {
  background-color: #e9ecef;
  border: none;

}

/* Styles for main content */
main {
  padding: 20px;
}

h2 {
  margin-top: 30px;
  font-size: 24px;
  color: #333;
}

p {
  color: #555;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Styles for footer */
footer {
  text-align: center;
  padding: 10px;
  background-color: #f8f9fa;
  color: #333;
}

.sidebar-image {
  margin-bottom: 20px; /* Adjust the space as needed */
}

/* Styling hyperlinks */
a {
  color: 	#1F51FF; /* Change the color as needed */
  text-decoration: none; /* Remove underline */
}

/* Hover effect for hyperlinks */
a:hover {
  color: 	#1F51FF; /* Change the color on hover */
  text-decoration: underline; /* Underline on hover */
}

a:visited {
  color: 	#1F51FF; /* Change the color on hover */
  text-decoration: underline; /* Underline on hover */
}

.tab-buttons {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: nowrap;
    }