.variables-modal-body{
    height: calc(100% - 20px);
}
.variable-tab-view-container{
     display:flex;
     flex-direction: row;
     border-bottom:1px solid #ccc;
     font-weight:bold;
     justify-content: space-evenly;
}

.variable-tab-view-container .tab-button{
     flex: 1;
     justify-content: space-evenly;
     white-space: nowrap; /* Prevents text wrapping */
     width: fit-content;
     text-align: center;
}

.variable-tab-view-container .tab-content{
    padding:10px 10px;
}

.variable-tab-view-container div.active{
     color: var(--theme-color);
     border-bottom:2px solid var(--theme-color);
}

.process-variable-tab-panel{
    height:80%;
}

#addedVariablesList .variablemappingwrapper{
    height:20%;
}

#addedVariablesList .mappedvariabledetails{
    min-height: 200px;
    max-height: 600px;
}

.variables-modal-body .left-section{
    width:70% !important;
    height: 100%;
    padding-bottom: 20px;
}

.variables-modal-body .right-section{
    width:30% !important;
    height: calc(100% - 20px) !important;
}

.variables-modal-body .right-section #addedVariablesList{
    height: calc(100% - 20px);
}

.VariablesList-content{
    height:100%;
}

.VariablesList.ui-dialog .ui-dialog-content{
    overflow:hidden !important;
}

/* New Show model css start */

.geniq-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999;
}

.geniq-modal-box {
  background: white;
  width: 350px;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.geniq-modal-header {
  background: var(--theme-color);
  padding: 10px 14px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  height:3rem;
  color: #fff;
}

.geniq-modal-body {
  padding: 10px 13px;
  text-align: left;
  font-size: 16px;
}

.geniq-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 16px;
  border-top: 1px solid #ddd;
}

.geniq-modal-footer button {
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.geniq-modal-footer .btn-yes {
  background-color: var(--theme-color);
  color: white;
}

.geniq-modal-footer .btn-no {
  background-color: var(--theme-color);
  color: white;
}

.geniq-modal-header span{
    font-size: 16px;
}

.geniq-modal-body span{
    font-size: 14px;
}
/* New Show model css end*/