@charset "UTF-8";

/* Quiz styling starts */

.quizcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-center {
    text-align: center !important
}

.mb-4 {
    margin-bottom: 20px;
}

.question {
    margin-bottom: 20px;
}

.options {
    list-style: none;
    padding: 0;
    font-size: 16px !important;
    font-family: 'Times New Roman', Times, serif;
}

.options li {
    margin: 15px 0px;
    font-size: 20px;
    border-radius: 20px;
    padding: 5px 0px;
}

.quizbtn {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.quizbtn:hover {
    background-color: #218838;
}

.quizresetbtn {
    display: inline-block;
    background-color: darkgoldenrod;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #333333;
    text-decoration: none;
    cursor: pointer;
}

.correct {
    background-color: #d4edda;
}

.incorrect {
    background-color: #f8d7da;
}

.close-btn {
    /* background-color: #dc3545; */
    background-color: #6c757d;
}

.close-btn:hover {
    /* background-color: #c82333; */
    background-color: #5c636a;
}


.question h4 {
    font-weight: bold;
}

/* Quiz styling ends*/


code {
    font-family: 'Times New Roman', Times, serif;
    line-height: 2;
    font-size: 20px;
    background-color: #f4f4f4;
    padding: 5px;
    border-radius: 3px;
}

/* Common CSS for Media Queries */

#myprojectcontent {
    grid-area: mypcontent;
    background-color: #f9f9f9;
    line-height: 1.5;
    font-size: 16px !important;
    font-family: 'Times New Roman', Times, serif;
}

/* Common Pagination styling Starts*/

.myprojectpaginationcontainer>a {
    width: 8.125rem;
    padding: 12px 18px;
    background-color: #004a8f;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

/* Hover effect */
.myprojectpaginationcontainer>a:hover {
    background-color: #0066cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.25);
}

/* Common Pagination styling Ends*/


.project-output-result-image-container {
    border: 4px solid #e0e0e0;
    width: 100%;
    border-radius: 10px;
}


/* Media Queries 1*/

@media screen and (max-width: 767px) {

    .myprojectcontainer {
        display: grid;

        grid-template-columns: 1fr;
        /* single column */
        grid-template-rows: auto auto auto auto;

        grid-template-areas:
            "mypheader"
            "mypcontent"
            "myplscontent"
            /* "myprscontent" */
            "mypfooter";
    }

    #myprojectcontent {
        padding: 10px 15px;
    }

    .project-output-result-image-container {
        padding: 10px;

        /* To add a gap between the image and the content */
        margin: 15px 0px;
    }

    #myprojectleftsidecontent {
        display: none;
    }

    #myprojectrightsidecontent {
        display: none;
    }

    /* Pagination styling changed according to media query */

    .myprojectpaginationcontainer>a {
        padding: 5px 10px;
        font-size: 1.25rem;
    }

}


/* Media Queries 2*/

@media screen and (min-width: 768px) and (max-width: 1199px) {

    .myprojectcontainer {
        display: grid;

        grid-template-columns: minmax(auto, 200px) minmax(auto, 1fr);
        grid-template-rows: auto auto auto auto;

        grid-template-areas:
            "mypheader mypheader"
            "myplscontent mypcontent"
            "myplscontent mypcontent"
            "mypfooter mypfooter";
    }

    #myprojectcontent {
        padding: 15px 25px;
    }

    .project-output-result-image-container {
        padding: 15px;

        /* To add a gap between the image and the content */
        margin: 1.25rem 0;
    }

    #myprojectrightsidecontent {
        display: none;
    }


    /* Pagination styling changed according to media query */

    .myprojectpaginationcontainer>a {
        padding: 7px 14px;
        font-size: 1.375rem;
    }

}


/* Media Queries 3 (Large screens (≥1200px) */

@media screen and (min-width: 1200px) {

    .myprojectcontainer {
        display: grid;

        /* grid-template-columns: minmax(auto, 200px) minmax(700px, 1fr) minmax(auto, 200px); */
        grid-template-columns: minmax(auto, 200px) minmax(0, 1fr) minmax(auto, 200px);
        grid-template-rows: auto auto auto auto;

        grid-template-areas:
            "mypheader mypheader mypheader"
            "myplscontent mypcontent myprscontent"
            "myplscontent mypcontent myprscontent"
            "mypfooter mypfooter mypfooter";
    }

    #myprojectcontent {
        padding: 1.25rem 1.5625rem;
    }

    .project-output-result-image-container {
        padding: 1.25rem;

        /* To add a gap between the image and the content */
        margin: 1.25rem 0;
    }

    /* Pagination styling changed according to media query */

    .myprojectpaginationcontainer>a {
        padding: 8px 16px;
        font-size: 25px;
    }

}

/* Unique Page Media Queries to hide the left side component in between the specified screen size */

@media screen and (min-width: 767px) and (max-width: 1200px) {

    .unique-page .myprojectcontainer {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;

        grid-template-areas: 
            "mypheader"
            "mypcontent"
            "myplscontent"
            "myprscontent"
            "mypfooter";
    }

    .unique-page #myprojectcontent {
        grid-area: mypcontent;
        background-color: #f9f9f9;
        line-height: 1.5;
        padding: 20px 25px;
        font-size: 1rem !important;
        font-family: 'Times New Roman', Times, serif;
    }

    .unique-page .project-output-result-image-container {
        padding: 15px;

        /* To add a gap between the image and the content */
        margin: 20px 0px;
    }

    .unique-page #myprojectrightsidecontent {
        display: none;
    }

    .unique-page #myprojectleftsidecontent {
        display: none;
    }

}

/* Naming the grid areas */
#myprojectheader {
    grid-area: mypheader;
    position: sticky;
    top: 0px;
    z-index: 1000;
}

#myprojectfooter {
    grid-area: mypfooter;
    margin: 0;
    /* background-color: rgba(70, 130, 180, 1) !important */
    background-color: rgb(215 224 232) !important;
}

#myprojectleftsidecontent {
    grid-area: myplscontent;
    background-color: #F8FAFF;
    /* subtle blue tint */
    position: sticky;
    top: 60px;
    /* adjust based on your header height */
    align-self: flex-start;
    height: calc(100vh - 20px);
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 5px;
}

#myprojectrightsidecontent {
    grid-area: myprscontent;
    background-color: #F8FAFF;
    /* subtle blue tint */
    position: sticky;
    top: 60px;
    height: calc(100vh - 20px);
    overflow-y: auto;
    /* adjust based on your header height */
    align-self: flex-start;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 5px;
}

/* The paragraph project content styling */
.paragraphprojectcontent {
    font-size: 1.2rem;
    /* 19.2px */
    line-height: 1.9;
    /* 1.9 * element's font size */
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c2c2c;
    margin: 1rem 0;
}

/* The project content heading/ Page heading styling */
/* Page heading styling */
.projectcontentheading {
    font-size: 2rem;
    /* responsive size */
    font-weight: 700;
    /* strong but not too heavy */
    text-align: center;
    color: #1a4a7a;
    /* deeper blue, better contrast */
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;

    /* background styling */
    background: linear-gradient(135deg, #f9f9ff, #f1f1f1);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);

    /* subtle letter styling */
    letter-spacing: 0.5px;
    line-height: 1.3;
    border-bottom: 4px solid #6c63ff;
    /* Power BI-like accent */
}

/* The project content sub-heading styling h2 */
.projectcontentsubheading {
    color: #333333;
    font-size: 1.5rem;
    /* Font size for h2 */
    font-weight: bold;
    /* Bold text */
    /* padding: 10px 15px; */
    /* Padding */
    margin-top: 24px;
    /* Margin above */
    margin-bottom: 16px;
    /* Margin below */
    /* border-left: 5px solid #0056b3; */
    /* Blue left border */
    line-height: 1.3;
    /* Comfortable line height */
    border-bottom: 1px solid #d8dee4;
    padding-bottom: .3em;
}


/* Subheading styles for h3 */
.projectcontentsubheadingh3 {
    color: #444444;
    /* Slightly lighter gray */
    background-color: #f8f8f8;
    /* Very light gray background */
    font-size: 1.25rem;
    /* Font size for h3 */
    font-weight: bold;
    /* Bold text */
    padding: 8px 12px;
    /* Padding */
    margin-top: 15px;
    /* Margin above */
    margin-bottom: 8px;
    /* Margin below */
    border-left: 4px solid #0056b3;
    /* Blue left border */
}


/* Subheading styles for h4 */
.projectcontentsubheadingh4 {
    color: #555555;
    /* Even lighter gray */
    background-color: #fafafa;
    /* Very light gray background */
    font-size: 1rem;
    /* Font size for h4 */
    font-weight: bold;
    /* Bold text */
    padding: 6px 10px;
    /* Padding */
    margin-top: 10px;
    /* Margin above */
    margin-bottom: 6px;
    /* Margin below */
    border-left: 3px solid #0056b3;
    /* Blue left border */
}

/* Project content output heading */
.projectcontentoutputheading {
    font-size: 20px;
    font-weight: bold;
    /* font-family: 'Times New Roman', Times, serif; */
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #333333;
    background-color: #e0e0e0;
    margin: 0px;
}

/* Project list content heading styling */
.projectlistheadings {
    color: red;
    list-style-type: none;
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    font-weight: bold;
    text-indent: 50px;
}

/* Project list content sub-headings styling */
.projectlistsubheadings {
    color: blue;
    list-style-type: none;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: bold;
    text-indent: 80px;
}

.projectexamplewritingstyle {
    font-size: 18px;
    font-weight: bold;
    color: black;
}


.myproject-code-container>pre {
    white-space: pre-wrap;
}

pre {
    display: block;
    margin-top: 0;
    overflow: auto;
    word-break: normal;
}

/* Here We are selecting all the pre tags with class name paragraphprojectcontent to remove the bottom margin  */

pre.paragraphprojectcontent {
    margin-bottom: 0;
}

/* Here We are selecting all the pre tags with class name paragraphprojectcontent to remove the bottom margin  */


.project-output-result-image-container>img {
    /* Code make the image responsive */
    width: 100%;
    height: auto;
}

.project-output-result-video {
    width: 50%;
}

.project-output-result-video-container {
    border: 1px solid red;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
}

/* CSS used for important notes used in website */
.projectimportantnote {
    background-color: #f2f2f2;
    border-left: 5px solid darkblue;
    padding: 10px;
}


/* Pagination Styling Starts */

.myprojectpaginationcontainer>a:hover {
    /* .myprojectpaginationstyling:hover { */
    color: white;
    background-color: blue;
}

.myprojectpaginationitem1 {
    float: left;
}


.myprojectpaginationitem2 {
    float: right;
}


.myprojectpaginationcontainer {
    margin-top: 4.375rem;
}

/* Pagination Styling Ends */

.myprojectcontenttable {
    border: 1px solid;
}

.content-divider {
    border: 5px solid blue;
    opacity: 0.5;
}

/* Sidebar styling starts */

/* Sidebar container */
.side-bar-group {
    list-style-type: none;
    margin: 0;
    padding: 3px;
    height: 75vh;
    overflow-y: auto;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #c0c0fd #f9f9f9;
    /* Thumb + Track */
}

/* For Chrome/Edge scrollbar */
.side-bar-group::-webkit-scrollbar {
    width: 0.375rem;
}

.side-bar-group::-webkit-scrollbar-thumb {
    background-color: #c0c0fd;
    border-radius: 6px;
}

.side-bar-group::-webkit-scrollbar-track {
    background: #f9f9f9;
}

/* Sidebar heading */
.side-bar-group-heading {
    font-weight: bold;
    text-align: center;
    border: none;
    padding: 10px;
    background: linear-gradient(135deg, #ececff, #d8d8f5);
    border-radius: 0.5rem;
    margin: 0.5rem;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Search box */
#side-bar-search {
    display: block;
    width: calc(100% - 16px);
    padding: 0.5rem;
    margin: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s ease-in-out;
}

#side-bar-search:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 6px rgba(108, 99, 255, 0.4);
}

/* Sidebar list items */
.side-bar-group-item {
    margin: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.side-bar-group-item a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px;
    border-radius: 8px;
    background-color: #f7f7f7;
    transition: all 0.2s ease-in-out;
}

/* Hover effect */
.side-bar-group-item a:hover {
    background-color: #ececff;
    color: #4a4a8a;
}

/* Active item */
.sibebaritemactive a {
    background-color: #c0c0fd;
    color: #1a1a4a;
    font-weight: bold;
    border-left: 4px solid #4a4a8a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Sidebar styling ends */


/* Abous us page image styling */
#about-us-image {
    width: 100%;
    height: 50%;
}

/* Use CSS to bold text when we need to style text for visual reasons without implying any semantic importance. */

.important {
    font-weight: bold;
}

/* To make the inline element as a block, this is used to avoid <br> tags */
.block {
    display: block;
}

/* To specify the space and make the span inline element as a block, this is used to avoid <br> tags */
.spacer {
    display: block;
    height: 20px;
    /* Adjust height for spacing */
}

.bgfill {
    /* background-color: #ccc; */
    background-color: #e1e2e6;
}


/* Search Container CSS Starts */
/* Search results CSS*/

.search-container {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    background: #f0f0f0;
    color: #333333;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: -webkit-fill-available;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
}

.search-results div {
    padding: 10px;
    cursor: pointer;
}

.search-results div:hover {
    background-color: #f0f0f0;
}

/* Search button CSS */

#search-button {
    background-color: rgb(184, 196, 207) !important;
    color: #1f2937 !important;
    padding: 0.625rem 1.25rem;
    border-radius: 0 4px 4px 0;
    border: solid 1px #ccc;
    transition: background-color 0.3s;
}

#search-button:hover {
    background-color: rgb(160, 170, 191) !important;
}


/* Below Added css for result items in case we are making it as anchor elements as described in main.js file */

.result-item {
    display: block;
    padding: 10px;
    margin: 5px 0;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

.result-item:hover {
    background-color: #e0e0e0;
    color: #000;
}

.result-item:active {
    background-color: #ccc;
}

/* Search Container CSS Ends */


/* Table CSS Starts*/

.content-table {
    width: 100%;
    border-collapse: separate;
    /* Changed from 'collapse' to 'separate' */
    border-spacing: 0;
    /* Set border-spacing to 0 for seamless borders */
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    /* Added border-radius for rounded corners */
    overflow: hidden;
    /* Ensures rounded corners are displayed */
}

.content-table th,
.content-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.content-table th {
    background-color: #f2f2f2;
    color: #333;
    text-align: center;
}

/* .content-table tr:nth-child(even) {
    background-color: #f9f9f9;  
    
} */

/* the above two lines are used to give stripping in the table, if we want */

.content-table tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}

/* Table CSS Ends*/


/* Bootstrap CSS */

.text-white {
    color: rgba(255, 255, 255, 1) !important
}

.d-flex {
    display: flex !important
}

.me-auto {
    margin-right: auto !important
}


.mb-2 {
    margin-bottom: .5rem !important
}

/* Ensure the show class displays the element in the Navbar toggling */
.show {
    display: block;
}

/* Bootstrap CSS */

:root {
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-body-font-family: var(--bs-font-sans-serif);
}

*,
::after,
::before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    /* font-family: var(--bs-body-font-family); */
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: var(--bs-body-text-align);
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

a {
    color: #0d6efd;
    text-decoration: underline
}

a:hover {
    color: #0a58ca
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
    display: none !important
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

[hidden] {
    display: none !important
}

.container,
.container-fluid {
    width: 100%;
    padding-right: calc(1.5rem * .5);
    padding-left: calc(1.5rem * .5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {

    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container {
        max-width: 1140px
    }
}

@media (min-width:1400px) {

    .container {
        max-width: 1320px
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * 0);
    margin-right: calc(-.5 * 1.5rem);
    margin-left: calc(-.5 * 1.5rem)
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(1.5rem * .5);
    padding-left: calc(1.5rem * .5);
    margin-top: 0
}

.col {
    flex: 1 0 0%
}


/* Search Input CSS */

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px 0 0 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    /* box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25) */
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px)
}

.btn {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    background-color: transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    border-color: transparent
}

.btn:focus-visible {
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
}

.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.65
}

.collapse:not(.show) {
    display: none
}

.dropdown {
    position: relative
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
    font-weight: bold;
    /* color: rgba(255, 255, 255, 1) !important */
    color: #1f2937 !important;
    /* text-gray-800 or adjust as needed */
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link:hover,
.nav-link:focus {
    background-color: #A0AABF !important;
    /* Medium blue-grey */
    color: #1f2937 !important;
    /* Keep original text color */
    border-radius: 0.25rem;
    /* Optional: adds rounded corners */
    outline: none;
}

.navbar-active-item {
    background-color: #A0AABF !important;
    /* Medium blue-grey */
    /* background-color: rgb(160, 170, 191) !important; */
    color: #1f2937 !important;
    /* Keep original text color */
    border-radius: 4px;
    /* Optional: adds rounded corners */
    outline: none;
}

.navbar {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    background-color: rgb(215 224 232) !important;
    height: 60px;
}

.navbar>.container,
.navbar>.container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(215 224 232) !important;
}

.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    white-space: nowrap;
    font-weight: bold;
}

.navbar-brand:focus,
.navbar-brand:hover {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: rgba(0, 0, 0, 0.9)
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.55);
    /* background-color: transparent; */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

/* The below code is used to make the navbar responsive starts */

@media (min-width:1080px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }

}

/* The above code is used to make the navbar responsive ends */


/* CSS for Cards Starts*/

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 16rem;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.375rem;
    float: left;
    margin: 10px;
    max-width: 18rem;
    color: #fff !important;
    background-color: rgba(70, 130, 180, 1) !important
}

.card>hr {
    margin-right: 0;
    margin-left: 0
}

.card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid var(--bs-card-border-color);
    font-weight: bold;
    font-size: 1rem;
    border-bottom: none;
}

.card-header:first-child {
    border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0
}

.card-body {
    flex: 1 1 auto;
    padding: 0 1rem;
    color: #555;
    background-color: #fff;
    border-radius: 0 0 0.375rem 0.375rem;
}

/* Hover Effect on Cards */
.card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* CSS for Cards Ends*/


.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.justify-content-center {
    justify-content: center !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

/* Extra added CSS */
/* Custom Accordion Styles */
.custom-accordion {
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.accordion-header {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007acc;
    background-color: #f1f1f1;
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Custom arrow for the summary element */
.accordion-header::after {
    content: '\25BC';
    /* Down arrow */
    font-size: 1rem;
    transition: transform 0.3s ease;
}

details[open] .accordion-header::after {
    transform: rotate(180deg);
    /* Up arrow when open */
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
}

.accordion-body .grouprow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* Remove default summary marker */
summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style: none;
    /* For Firefox */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accordion-header {
        font-size: 1.2rem;
    }

}


/* Custom Dropdown Styling in the Navbar Starts */
.custom-dropdown {
    position: relative;
}

.custom-dropdown-toggle {
    cursor: pointer;
}

.custom-dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    top: 100%;
    left: 0;
    z-index: 999;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.custom-dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid #ddd;
}

.custom-dropdown-menu li:last-child {
    border-bottom: none;
}

.custom-dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.custom-dropdown-menu li a:hover {
    background-color: #f0f0f0;
}

/* Show dropdown on hover */
.custom-dropdown:hover .custom-dropdown-menu {
    display: block;
}

/* Custom Dropdown Styling in the Navbar Ends */


/* Styles for the dynamically added copy button */
.dynamic-copy-button {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #e5e7eb;
    color: #4b5563;
    padding: 0.25rem 0.5rem;
    /* 4px 8px */
    border-radius: 0.375rem;
    /* 6px */
    cursor: pointer;
    font-size: 0.75rem;
    /* 12px */
    font-family: 'Inter', sans-serif;
    /* Match body font */
    border: 1px solid #d1d5db;
    /* Tailwind gray-300 */
    transition: background-color 0.2s ease, color 0.2s ease;
    z-index: 10;
    /* Ensure button is above code */
}

.dynamic-copy-button:hover {
    background-color: #d1d5db;
    color: #1f2937;
}

.dynamic-copy-button.copied {
    background-color: #10b981;
    color: white;
    border-color: #059669;
}

.myproject-copy-container {
    position: relative;
    /* Needed for absolute positioning of the button */
    border: 1px solid #e5e7eb;
    /* Border */
    border-radius: 0 0 0.375rem 0.375rem;
    /* Rounded corners */
    width: 100%;
    height: auto;
    overflow: auto;
    /* Enable scrolling if needed */
    margin: 0px 0px 20px 0px;
}

.myproject-code-container {
    height: 100%;
    width: 100%;
    background-color: #f2f2f2;
    line-height: 2;
    font-size: 20px;
    font-family: "Times New Roman";
    overflow: auto;
    /* Enable scrolling */
    padding: 0.5rem;
    /* 8px */
    color: #1f2937;
    margin: 0;
}