
.disabled-card {
  opacity: 0.7; /* Adjust opacity as needed */
  pointer-events: none; /* Disable interactions */
}

.disabled-image {
    filter: grayscale(100%);
  /* opacity: 0.7; /* Adjust opacity as needed */
  pointer-events: none; /* Disable interactions */
}
.card {
    box-shadow: 0 4px 10px rgba(0,0,0,0.16), 0 4px 10px rgba(0,0,0,0.23);
}
.bgWhite {
    background-color: white!important;
}

.imgModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.imgModalContent {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
.pLightOrange {
    border-radius: 25px;
    background-color:#FFCC99;
    color:black!important;
    padding:10px;
}
.pVibrantOrange {
    border-radius: 25px;
    background-color:#3498db;
    color:white!important;
    padding:10px;
}
.pDeepOrange {
    border-radius: 25px;
    background-color:#FF6600;
    color:white!important;
    padding:10px;
}
.pBlue {
    border-radius: 25px;
    background-color: #0dcaf0;
    color:black!important;
    padding:10px;
}
.pRed {
    border-radius: 25px;
    background-color: #ff0000;
    color:white!important;
    padding:10px;
}
body {
    background: url('background-grey-shapes.png'), #ffffff;
    /*font-family: Arial;*/
    font-family: 'Lexend Deca', sans-serif!important;
}


.navbar {
    position: sticky;
    top: 0; 
    z-index: 1000; 
    background-color: rgba(255,255,255,0.8)!important;
}
.navbar-collapse {
    max-height: 340px;
}
/*
.navbar>.container-fluid {
    justify-content: left;
}
.nav-item a:hover {
    color:white;
    background-color:#3498db; 

}

*/
.content-section {
    overflow: auto; /* Add scrollbars if content overflows */
    word-wrap: break-word; /* Break long words */
    padding: 20px; /* Adequate padding around content */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Responsive Image Styling */
.content-section img {
    max-width: 100%; /* Ensure image is not wider than its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevent inline gaps */
    margin-bottom: 20px; /* Space between image and text */
}

.companyFont {
    /* font-family: 'YellowTail', cursive; */
    font-family: sans-serif;
    font-size: 22px;

    color: #cadff4;
    /*text-shadow: 1px 1px 2px black, 0 0 1em lightgrey, 0 0 0.2em grey;*/

}


.content-section {
    overflow: auto; /* Ensures scrollbars if content overflows */
    word-wrap: break-word; /* Breaks long words to prevent horizontal overflow */
    min-height: 500px; /* Sets a minimum height */
    padding-top: 20px; /* Adjust padding as necessary */
    padding-bottom: 20px; /* Adds padding to the bottom */
}

.video-container {
    width: 100%; /* Adjust width as needed */
    margin: 0 auto; /* Center the container */
    height: auto; /* Lets the height adjust based on content */
    padding-bottom: 56.25%; /* Aspect ratio padding for video */
    position: relative; /* Relative positioning */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.flex-container {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Ensures that child elements stretch to fill the container width */
}


.btn {
    border: none; /* Remove borders */
    color: white; /* Add a text color */
    padding: 10px 20px; /* Add some padding */
    cursor: pointer; /* Add a pointer cursor on mouse-over */
    border-radius: 5px 0 0 5px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    max-width: 60px;
}

.btnEd {
    border: none; /* Remove borders */
    color: white; /* Add a text color */
    padding: 10px 20px; /* Add some padding */
    cursor: pointer; /* Add a pointer cursor on mouse-over */
    border-radius: 5px 0 0 5px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    max-width: 100px;

}

.success {
    background-color: #04AA6D;
} /* Green */
.success:hover {
    background-color: #46a049;
}

.info {
    background-color: #007bff;
} /* Blue */
.info:hover {
    background: #0b7dda;
}

.warning {
    background-color: #ff9800;
} /* Orange */
.warning:hover {
    background: #e68a00;
}

.danger {
    background-color: #f44336;
} /* Red */
.danger:hover {
    background: #da190b;
}

.default {
    background-color: #e7e7e7;
    color: black;
} /* Gray */
.default:hover {
    background: #ddd;
}
.iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* Aspect ratio: 16:9; for 4:3, use 75% */
    width: 100%; /* Full width of the parent */

}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Optional: removes the border */

}
.content {
    position: relative;

}

.scroll-down-arrow {
    position: absolute;
    bottom: 10px; /* Position at the bottom of your div */
    left: 50%; /* Center horizontally */
    width: 0;
    height: 0;
    border-left: 15px solid transparent; /* Adjust size of arrow by changing these values */
    border-right: 15px solid transparent;
    border-top: 30px solid #7d94b5; /* Arrow color */
    margin-left: -15px; /* Offset for centering */
    z-index: 10;
    /* Animation for subtle bouncing effect */
    animation: bounce 2s infinite;
}
#scrollToTopButton {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* No border */
    outline: none; /* Remove outline */
    background-color: #337ab7; /* Background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#scrollToTopButton:hover {
    background-color: #f00; /* Add a dark-grey background on hover */
    color:white;
}

/* Animation keyframes for bouncing effect */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.desktop {
    display: block;
}
.mobile {
    display: none;
}
@media only screen and (max-width: 768px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .content-section {
        font-size: smaller; /* Adjust text size for smaller screens */
    }
    /* Add any other responsive adjustments for smaller screens */
}

.navbar-brand {
    padding:0px;
    padding-left:10px;
    float: left;
}
.btn {
    color:#000000;
}
.card {
    margin:20px;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
    color:green!important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before {
    background-color: rgba(0,0,0,0)!important;
    color:red!important;
}



/* Style for the modal */
.modal {
    display: block;
    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: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* Style for the close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
}



