.title {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TOGGLE SWITCH STYLES */
.toggleSwitch {
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.switchLabel {
  display: block;
  width: 60px;
  height: 30px;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  margin: 6px;
  transition: background-color 0.2s;
}
.green {
  background: #4ade80;
}

.gray {
  background: rgb(229, 231, 235);
}

.switchCircle {
  position: absolute;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: white;
  transition: left 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switchLeft {
  left: 2px;
}

.switchRight {
  left: 32px;
}

/* CARDS STYLES */
.planCards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 15px;
  justify-content: space-between;
  margin: 10px;
}

/* .planCardWrapper {
  max-width: 260px;  
  height: 300px;        
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background-color: #fff;
  overflow: hidden;
  border: 2px solid red;
} */

.cardContent {
  display: flex;
  height: 300px;
  flex-direction: column;
  justify-content: space-between;
}

.cardHeader {
  text-align: left;
  margin-bottom: 10px;
}

.gold{
  color: #926F34;
}
.normal{
  color: black;
}

.cardBody {
  margin-bottom: 10px;
}

.cardBody p {
  margin: 5px 0;
}

.activateButton {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .planCards {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 450px) {
  .planCards {
    grid-template-columns: repeat(1, 1fr); 
  }
  .cardContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
}
