body {
    font-family: sans-serif, 'Segoe UI', Tahoma, Verdana;
    margin: 0 auto;
    padding: 0;
    background-color: #eee !important;
}
.page-bg {
    background-color: #fff;
    overflow: hidden;
}
.logo img {
    max-height: 106px;
    padding-left: 10px;
}
.header-title {
    font-size: 32px;
    color: blue;
    font-family: sans-serif;
}
.header-subtitle {
    font-size: 24px;
    font-family: sans-serif;
    color: #0d7e0a;
}
.main-nav{
    background-color: #008B8B;
}
.navbar-dark.main-nav .navbar-brand {
    color: #fff;
}
.navbar-dark.main-nav .navbar-brand:focus,
.navbar-dark.main-nav .navbar-brand:hover,
.navbar-dark.main-nav .navbar-brand:active {
    color: #fff;
}
.navbar-dark.main-nav .navbar-toggler {
    color: #fff;
    border-color: #fff;
}
 /* Main Section */
 .main-section {
    min-height: 70vh;
 }
 .text-title {
    font-size: 2.5rem;
 }
 .text-subtitle {
    font-size: 1.25rem;
 }
 .highlight-text {
    color:blue;
    font-size:24px;
 }
 .highlight-text a {
     text-decoration: none;
 }
 .card {
    border-radius: 0.5rem;
    box-shadow: -3px -3px 7px #e1e1e1, 3px 3px 5px #5e6879e0;
    background-color: #008b8b21;
}
.card-title {
    color: #212529b5;
}
.custom-calender-icon{
    height: 38px;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.btn-outline-custom {
    color: #07A652;
    border-color: #07A652;
}
.btn-outline-custom:hover,
.btn-outline-custom:focus
.btn-outline-custom:active {
    color: #fff;
    background-color: #07A652;
    border-color: #07A652;
}
.btn-outline-custom:focus {
    box-shadow: 0 0 0 0.25rem #07A652;
}
#tbl_schedule tr > th {
    font-size: 14px;
}
.input-group.date >.form-control.datepicker {
    background-color: #fff;
    min-width: 105px;
}
 /* Footer Section */
.footer-text{
    background-color: #85c1e9;
    padding: 15px;
    color: #444;
}

.disable-class > input{    
    pointer-events : none;
    user-select : none;
}

.disable-class > div > input{    
    pointer-events : none;
    user-select : none;
}

.disable-class > a {    
    pointer-events : none;
    user-select : none;
}

.disable-class > select { 
    pointer-events : none;
    user-select : none;
}

.disable-class > textarea { 
    pointer-events : none;
    user-select : none;
}

.disable-class > label{    
    pointer-events : none;
    user-select : none;
}

@media screen and (max-width:991px) {
    .logo img {
        padding-left: 10px;
    }
    .header-title {
        font-size: 26px;
    }
    .header-subtitle {
        font-size: 18px;
    }
    .main-nav .navbar-nav {
        margin-top: 0.5rem;
        align-items: center;
    }
    .main-nav .navbar-nav li a {
        min-width: 150px;
        margin: 0px 0px 5px 0px !important;
    }
    .highlight-text {
        font-size: 18px;
    }
}





.group_style div:first-child {
    display: flex;
    justify-content: space-between;
}

.table>:not(:first-child) {
    border-top: 0px solid currentColor;
}
.table tr td label {
    font-family: 'Nikosh' !important;
}

 /* survey...from */
 
 .survey ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    margin-bottom: 0;
    justify-content: space-around;
}


.button {
    background-color: #38773B; /* Green */
    border: none;
    color: white;
    padding: 5px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 8px;
  }
  
  .button1 {
    background-color: white; 
    color: black; 
    border: 2px solid #38773B;
  }
  
  .button1:hover {
    background-color: #38773B;
    color: white;
  }

  
  .table-wrapper {
    position: relative;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.table-scroll {
    width: 100%;
    display: inline-block;
    overflow-x: auto;
}

.btn-circle {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}

/* Specific styling for the info button */
.btn-info {
    background-color: #17a2b8;
    color: white;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Hover effect for the info button */
.btn-info:hover {
    background-color: #138496;
    transform: scale(1.2); /* Slightly enlarges the button when hovered */
}

/* Fixed column style for the table */
.fixed-column {
    position: sticky;
    right: 0;
    background-color: #fff;
    z-index: 2;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    width: 80px;
    text-align: center;
}

/* For Tooltip */
.tooltip-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Tooltip styling */
.tooltip-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%; /* Adjust this value to position tooltip above the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: #703f3f;
    color: #fff;
    padding: 2px 5px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 10;
}

/* Show the tooltip on hover */
.tooltip-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Tooltip arrow */
.tooltip-btn::before {
    /* content: '';
    position: absolute;
    bottom: 100%; 
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s; */
}

/* Show the tooltip arrow on hover */
.tooltip-btn:hover::before {
    opacity: 1;
    visibility: visible;
}
