
/*!
 * Start Bootstrap - Simple Sidebar (https://startbootstrap.com/template/simple-sidebar)
 * Copyright 2013-2020 Start Bootstrap
 * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-simple-sidebar/blob/master/LICENSE)
 */
/*

*/
 #wrapper {
    overflow-x: hidden;
 }

#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 2.2rem;
}

#sidebar-wrapper .list-group {
  width: 15rem;
  font-size: 1.2rem;
text-align: center;
}

#page-content-wrapper {
  min-width: 100vw;
 margin-left:0.1rem;
 margin-right: 0.1rem;
  
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  #wrapper.toggled #sidebar-wrapper {
    margin-left: -15rem;
	  
  }
}

.container-fluid-nav {
        padding: 0;
        margin: 0;
    }

.text{
    text-align:left;
    padding:0 0 0 15px;
}
.text h4{
    padding-bottom:5px;
}



/* Style inputs, select elements and textareas */
input[type=text], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/* Style the submit button */
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

/* Style the container */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.img-left {
    float: left; /* Float the image to the left */
    margin-right: 20px; /* Add some margin to the right of the image */
  }
  .paragraph-wrapper {
    overflow: hidden; /* Clear the float */
  }




#topNav {
    list-style: none; /* Remove bullet points */
    padding-left: 0; /* Remove default padding */
    display: flex; /* Use flexbox */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: center; /* Center the items */
    margin-top: 0; /* Remove any default margin */
  }
  #topNav li {
    flex: 1 0 20%; /* Allow each item to grow and set a base width */
    text-align: center; /* Center the text */
  }
  #topNav a {
    display: block; /* Ensure links take full width of li */
    padding: 10px 0; /* Add padding for better click area */
    text-decoration: none; /* Remove underline */
  }
  #burger {
    cursor: pointer;
    display: none; /* Hide the burger icon by default */
  }
  @media (max-width: 768px) {
    #topNav {
      display: none; /* Hide the navigation menu on small screens */
      flex-direction: column; /* Stack the links vertically */
      background-color: #ff0000; /* Match the background color */
      position: absolute; /* Position it over the content */
      width: 100%; /* Full width */
      top: 50px; /* Adjust as needed */
      left: 0;
    }
    #topNav li {
      display: block; /* Display list items as block */
      width: 100%; /* Full width */
      margin-right: 0; /* Remove right margin */
      text-align: center; /* Center the links */
    }
    #topNav.show {
      display: flex; /* Show the navigation menu when toggled */
    }
    #burger {
      display: block; /* Show the burger icon on small screens */
    }
  }
  @media (min-width: 769px) {
    #burger {
      display: none; /* Hide the burger icon on larger screens */
    }
  }
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
/*
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
*/
