body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#content,.content {
    padding: 20px;
    overflow-y: auto;
}

h1,
h2 {
    color: #333;
}

.section {
    margin-bottom: 20px;
}

.feature-list {
    list-style-type: disc;
    margin-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
}

.quiz {
    margin-top: 30px;
}

.quiz input {
    margin-right: 10px;
}

.quiz button {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.quiz-section {
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid #ddd;
}

.quiz-section h3 {
    margin-top: 0;
}

.quiz-option {
    margin-bottom: 10px;
}

.quiz button:hover {
    background-color: #575757;
}

.quiz .question {
    font-size: 18px;
}

.step {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Smaller heading style for features */
.feature-heading {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

#navigation {
    background-color: #0078d7;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#navigation a {
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
}

#navigation a:hover {
    background-color: #575757;
}


.sidebar {
    position: fixed;
    width: 250px;
    height: 100%;
    background-color: #0078d7;
    color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.sidebar-title {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #005bb5;
    margin: 0;
    font-size: 20px;
    background: #005bb5;
    color: #fff;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
    padding: 15px;
}

.sidebar-menu a:hover {
    background-color: #005bb5;
}

.sidebar-menu .active{
    background-color: #005bb5;
}

.d-flex {
    display: flex;
    flex-direction: row;
}

.overall-introduction {
    margin-left: 250px;
}

.steps img {
    margin-top: 10px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

ol {
    padding-left: 20px;
}

 /* Smooth scrolling */
 html {
    scroll-behavior: smooth;
}
.content {
    margin-left: 250px;
}

#menu {
    width: 250px;
    background-color: #333;
    color: white;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
    position: fixed;
}

#menu h2 {
    margin-top: 0;
}

#menu ul {
    list-style-type: none;
    padding-left: 0;
}
#menu ul li {
    margin: 10px 0;
}

#menu a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #555;
}

#menu a:hover {
    background-color: #575757;
}

#menu .submenu a {
    padding-left: 30px;
}

#menu .submenu {
    display: none;
    margin-top: 10px;
}

#menu .submenu.active {
    display: block;
}

/* Dynamic image size */
.usrrole-img {
    display: block;
    margin: 20px 0;
    width: 100%; /* Makes the image width responsive */
    max-width: 850px; /* Ensures the image doesn't exceed this width */
    height: auto; /* Maintains aspect ratio */
}

#processSteps {
    margin-top: 20px;
}
#quiz {
    margin-top: 20px;
}
img {
    max-width: 100%;
    height: auto;
}

.quiz input[type="button"] {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
.quiz input[type="button"]:hover {
    background-color: #2980b9;
}
label {
    display: block;
    margin-bottom: 5px;
}

.video-tutorial {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.quiz-options label {
    display: block;
    margin: 5px 0;
}

.result {
    margin-top: 10px;
}

.quiz-options input {
    margin-right: 10px;
}

#myimage {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 300px;
  }
  .highlight {
    background-color: #f9f871;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: block;
  }