*{
    font-size: 18px;
}


.main-logo-in-header {
   max-width: 195px;
    position: absolute;
    left: 10px;;
}

.dropdown-menu input{
    margin-bottom: 15px;
    width: 20px;
    height: 20px;
}

.navbar-header {
    width: 100%;
}

.left-column {
   
    background-color: #e9ecef; /* Just a sample background color; adjust as needed */
   
}

.middle-column {
  
    background-color: #f8f9fa;
    
}

.right-column {
   
    background-color: #e9ecef;
   
}



.author {
    font-size: 24pt;
    font-weight: bold;
}

.work-title, .section-title {
    font-size: 18pt;
    font-weight: bold;
}

/* styles1.css */
button#exportPdf {
    margin-top: 20px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button#exportPdf:hover {
    background-color: #0056b3;
}

audio.style-2 {
    outline: none;
    width: 100%;
    border: 1px solid #007BFF;
    background-color: #e6eef9;
    box-shadow: inset 0 0 15px #b2c8e6, 2px 2px 5px rgba(0,0,0,0.2);
    border-radius: 12px;
    height: 60px;
}

audio.style-2::-webkit-media-controls-panel,
audio.style-2::-webkit-media-controls {
    background-color: #e6eef9;
}

audio.style-2::-webkit-media-controls-play-button,
audio.style-2::-webkit-media-controls-volume-slider-container {
    color: #007BFF;
}


.modal-image {
    width: 100%; /* This ensures the image takes up the full width of the modal body */
    height: auto; /* This keeps the image's aspect ratio */
    display: block; /* This removes any unwanted space around the image */
}






/* Base styles for the button */
.btn-checkbox {
    display: block; /* Changed from inline-block to block to make it span the entire width */
    width: 100%; /* Ensures the button spans the entire column width */
    background-color: white; /* Default color */
    padding: 10px 20px; /* Padding for the text inside the button */
    margin-bottom: 10px; /* Padding between each button */
    border: 1px solid gray; /* Updated border color */
    cursor: pointer;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    color: black;
    box-sizing: border-box; /* Ensures that padding and border are included in the element's total width and height */
}

/* Hide the real checkbox */
.section-checkbox {
    display: none;
}

/* Text styles inside the button */
.btn-text {
    display: inline-block;
}



.btn-active {
    background-color: gray !important; /* the !important is used to ensure this styling takes precedence */
    color: white !important;
}










@media (max-width: 992px) {
    .navbar {
        justify-content: space-between;
    }
    .navbar-brand, .navbar-toggler {
        order: 1;
    }
    .navbar-toggler {
        order: 0;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        transform: translateX(-100%);  /* Updated this from left: -100%; */
        width: 100%;
        height: 100vh;
        background: white;
        overflow-y: auto;
        transition: transform 0.3s ease-in-out;  /* Updated this from left 0.3s ease-in-out; */
        padding-top: 60px; /* Space for logo and close icon */
        z-index: 9999;  /* Ensures menu appears on top */
    }

    .navbar-collapse.collapsing {
        transform: translateX(-100%); /* Updated this */
    }
    .navbar-collapse.show {
        transform: translateX(0); /* Updated this */
    }
    .navbar-collapse.collapsing-in {
        transform: translateX(0);
    }
    .navbar-collapse.collapsing-out {
        transform: translateX(-100%);
    }

    .menu-header {
        position: fixed;
        top: 0;
        width: 100%;
        background: white;
        display: flex;
        justify-content: space-between;
        align-items: center; /* To vertically center logo and close icon */
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .menu-logo { 
        max-width: 275px; /* Adjust as needed */
        height: auto;
        margin-right: auto; /* To push it to the left if you want */
    }
    .menu-close {
        font-size: 24px;
        cursor: pointer;
        padding-right: 20px;
    }
}

/* By default, the elements are visible and in the normal document flow */
.menu-logo, .menu-close {
    display: block;
    visibility: visible;
    position: relative;  /* this ensures it's in the normal flow by default */
}

/* When the screen is larger than 992px, make them invisible and remove from flow */
@media (min-width: 993px) {
    .menu-logo, .menu-close {
        visibility: hidden;
        position: absolute;
    }
}
