.zoomable-image {
    margin-top: 50%;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zoomable-image:hover {
    opacity: 0.7;
}

.graphical-element-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: white;
}

.graphical-element-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.image-container {
    height: 200px; /* Adjust the desired height */
    width: 100%; /* Adjust the desired width */
}

.edit-icon-button {
    background-color: #868e96;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.delete-icon-button {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.td-action-column {
    display: flex;
    gap: 10px;
}

.select_picker_input {
    border: 1px solid #ced4da; !important;
    background-color: #fff; !important;
    color: #54667a; !important;
    border-radius: .25rem;

}

.run-process-btn[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none; /* Ensures no interaction */
}

#run-all-processes-button[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none; /* Ensures no interaction */
}

.dynamic-table-container {
    height: 83vh !important;
    overflow-y: scroll !important;
}
