.exec-flex{
  margin-top: 20px;
  display:flex;
  gap:10px;
  align-items:stretch;
}

/* MOBILE / SMALL SCREEN */
@media (max-width: 768px){
  .exec-flex{
    flex-direction: column;
  }

  .exec-cicd{
    order: -1; /* 👈 THIS moves it to TOP */
  }
}

/* .exec-table {
  display: inline-table;
  width: auto !important;
  max-width: 100%;
  table-layout: auto;
  margin: 0;
  white-space: nowrap;
  border-collapse: collapse;
} */
 .exec-table{
  width:auto;
  max-width:100%;
  table-layout:auto;
  margin:0;
  white-space:nowrap;
  border: 1px solid black;
}

/* Remove percentage widths */
.exec-table th,
.exec-table td {
  width: auto !important;
  transition: all 0.4s ease;
}

/* Third column initial state */
.exec-table th:nth-child(3),.exec-table th:nth-child(4),
.exec-table td:nth-child(3),.exec-table td:nth-child(4) {
  opacity: 0;
  max-width: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  transform: translateX(-10px);
  transition: 
    opacity 0.4s ease,
    max-width 0.4s ease,
    padding 0.4s ease,
    transform 0.4s ease;
}

/* Show column 3 smoothly */
.exec-table:hover th:nth-child(3),.exec-table:hover th:nth-child(4),
.exec-table:hover td:nth-child(3),.exec-table:hover td:nth-child(4) {
  opacity: 1;
  max-width: 100%; /* adjust to your content size */
  padding-left: 12px;
  padding-right: 12px;
  transform: translateX(0);
}



.exec-table-wrapper{
  flex:1;
}

.exec-city{
  flex:1;
  position: absolute;
  top: -60px;
  left: 250px;
}

#cityCanvas{
  width:100%;
  height:100%;
  display:block;
}



#warehouseCanvas{
  width:100%;
  height:100%;
  position: absolute;
  display:none;

}

.exec-cicd{
  flex:2;
  position: relative; 
  background: transparent; 
  padding: 10px; 
  height: 500px;
  width: 100%;
}

#cicdCanvas{
  display:block;
  width:100%;
  height:100%;
}

.exec-waterfallcicd{
  flex:1;
  position: relative; 
  background: transparent; 
  height: 350px;
  width: 100%;
}

#waterfallcicdCanvas{
  display:block;
  width:100%;
  height:100%;
}


.exec-factory{
  background: transparent; 
  height: 180px;
  width: 100%;
}

#factoryCanvas{
  display:block;
  width:100%;
  height:100%;
}


.cad-architecture{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.arch-box{
  align-items:center;
  background:#f3f4f6;
  padding:12px 16px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.arch-arrow{
  align-items:center;
  font-size:18px;
}