.material-icons{
    vertical-align: top;
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}
.modal_container{
    position: absolute;
    display: inline;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(0,0,0,0.66);
}
.modal_body{
    position: relative;
    top: 20vh;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: auto;
    width: 80vw;
}
.yes_button, .no_button{
    display: inline-block;
    padding-top: 20px;
}
.no_button{
    padding-left: 10px;
}
.modal_header{
    font-weight: bold;
}

#ddArea {
    height: 200px;
    border: 2px dashed #ccc;
    text-align: center;
    font-size: 20px;
    background: #f9f9f9;
    margin-bottom: 15px;
}

.ddArea {
    height: 200px;
    border: 2px dashed #ccc;
    text-align: center;
    background: #f9f9f9;
    margin-bottom: 15px;
}

.drag_over {
    color: #000;
    border-color: #000;
}

.thumbnail {
    width: 100px;
    height: 100px;
    padding: 2px;
    margin: 2px;
    border: 2px solid lightgray;
    border-radius: 3px;
    float: left;
}

.d-none {
    display: none;
}

.z-100{
    z-index: 100;
}
.z-200{
    z-index: 200;
}

.sticky-header{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2; 
}

.custom-bg {
    background-color: rgba(185, 185, 185, 1.0); /* Adjust the opacity (0.5 in this case) to make it lighter or darker */
  }

.text-grey{
  color: #d5d5d5 !important;
}

.truncate-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.blue-transparent-bg {
    background-color: rgb(0, 145, 255);
    opacity: .8;
    color: white;
}
.yellow-transparent-bg {
    background-color: rgb(247, 254, 109);
    opacity: .8;
    color: black;
}
/* Ensure dropdowns are visible */
.dropdown-menu.show {
    display: block !important;
}

/* Style the third level */
.dropdown-menu .dropdown-menu {
    margin-left: 1rem;
    position: static; /* Prevent it from acting like a dropdown */
    display: block; /* Ensure it is always visible */
    background-color: inherit; /* Keep the background consistent */
}

/* Adjust the links styling if necessary */
.nav-item .dropdown-item {
    padding-left: 1.5rem;
    color: #fff;
}

.nav-item .dropdown-item:hover {
    background-color: #343a40;
    color: #fff;
}

.menu-third-level {
    margin-left: 1rem; /* Adjust as needed */
  }

  .second-level-caret {
    display: inline;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    content: "";
    margin-top: 0.5em;
    position: absolute;
    margin-left: 0.5em;
  }

.btn-link:focus {
    outline: none; /* Remove the default outline */
    box-shadow: none; /* Remove the box shadow (if any) */
}

.table-row-even {
    background-color: #f9f9f9; /* Light color for even rows */
}

.table-row-odd {
    background-color: #ffffff; /* Default color for odd rows */
}

.sticky-button-area {
    position: fixed;
    top: 100px;
    right: 10px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    max-width: 150px;
}
.sticky-button-group {
    display: flex;
    flex-direction: column;
}

.select-box, .datepicker {
    font-size: 1em !important;
}

.btn-orange {
    background-color: orange;
    border-color: orange;
    color: white;
}

.btn-orange:hover {
    background-color: #e68900; /* Darker shade for hover */
    border-color: #e68900; /* Darker border for hover */
    color: white;
}

.btn-orange:focus, .btn-orange.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.5); /* Optional focus state */
}

.btn-outline-orange {
    color: orange;
    border: 1px solid orange;
    background-color: transparent;
}

.btn-outline-orange:hover {
    background-color: orange;
    color: white;
    border-color: orange;
}

.btn-outline-orange:focus, .btn-outline-orange.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.5); /* Optional focus state */
}

.bg-purple {
    background-color: purple !important;
}