#compare-plans-table {
    border-collapse: separate;
    border-spacing: 0;        
    border-radius: 8px;
    overflow: hidden;          
    border: 1px solid #d2d2d2; 
}

#compare-plans-table thead th {
    background-color: #efefef;
    border-bottom: 1px solid #d2d2d2;
    border-top: none;
    padding-top: 8px;
    margin: 0;
}

#compare-plans-table thead tr th:first-child {
    border-top-left-radius: 8px;
    border-left: none;
}

#compare-plans-table thead tr th:last-child {
    border-top-right-radius: 8px;
    border-right: none;
}

.glow-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f8f9fa; 
  z-index: 1;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.glow-1 {
  width: 40vw;
  height: 40vw;
  min-width: 300px;
  min-height: 300px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 75%);
  top: 50%;
  left: -15vw;
  transform: translateY(-50%);
}

.glow-2 {
  width: 45vw;
  height: 45vw;
  min-width: 350px;
  min-height: 350px;
  background: radial-gradient(circle, #a855f7 0%, transparent 75%);
  top: 50%;
  right: -20vw;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .glow {
    opacity: 0.3;
    filter: blur(60px);
  }
  
  .glow-1 {
    left: -25vw;
  }
  
  .glow-2 {
    right: -30vw;
  }
}