.clickable {
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 5rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    /* transition: transform 0.2s ease-in-out; */
  }
  
  .close-btn::before,
  .close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 4px;
    background: black;
    border-radius: 2px;
    transform-origin: center;
  }
  
  .close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  .close-btn:hover {
    background: white;
  }
  

.popup {
    display: none;
    background-color: #F7F7F7;
    animation: slide-in .5s ease;
    animation-fill-mode: forwards;
    border: 3px solid rgba(0, 0, 0, 0.125);
    border-radius: 5px;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-right:10px;
    overflow:auto;
    
}

.white {

    background-color: white;

}

.tableclick {
    /* flex-grow: 1; */
    animation-fill-mode: forwards;
    animation: none;
}


.tablew100 {
    width: 100% !important;
}

.dyntabcontent {
    display: none;
    }
    
.dynamictabs {
    padding-bottom: 10px;
    }

@keyframes slide-in {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slide-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes mymovein {
    0% {
        flex-grow: 1;
    }

    100% {
        flex-grow: 10;
    }
}

@keyframes mymoveout {
    0% {
        flex-shrink: 1;
    }

    100% {
        flex-shrink: 10;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (last value) to your desired transparency level */
    z-index: 1040; /* Ensure the overlay is above the outer modal */
  }

.dialog-right .q-dialog__inner {
    margin-right: 75px;
    justify-content: flex-end;
}

.dialog-left .q-dialog__inner {
    margin-left: 75px;
    justify-content: flex-start;
}

div > .q-btn.custom-bootstrap-btn:before {
    box-shadow: none;
  }

div > .q-btn.custom-bootstrap-btn {
    font-weight: 400;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

.custom-bootstrap-btn {
    /* Replicate bootstrap's outline primary button styles */
    border: 1px solid #007bff !important;
    color: #007bff !important;
    background-color: transparent;
    font-size: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    text-transform: none; /* Already disabled by no-caps */
  }
  
.custom-bootstrap-btn:hover {
    color: #fff !important;
    background-color: #007bff;
    border-color: #007bff;
}

.q-btn.custom-bootstrap-btn .q-btn__content {
    display: flex !important;           /* If Quasar’s classes are being unset */
    justify-content: center !important; /* Horizontal alignment */
    align-items: center !important;     /* Vertical alignment */
    text-align: center !important;      /* Fallback for non-flex text alignment */
  }

.q-btn.custom-bootstrap-btn .q-btn__content .block {
    display: inline-block !important; 
}

.customize-search-css .q-placeholder {
    padding-left:20px;
}

.dynamicmodal .q-dialog__backdrop {
    background: rgba(0, 0, 0, .2);
}