.pricing-plan {
  overflow: hidden;
  border: 1px solid #00775a;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 3rem;
  font-size: 1rem;
}

/* Hover colors */
#monthly-option:hover {
  background-color: #00775a;
  color: #f2f2f2 !important;
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#three-months-option:hover {
  background-color: #e6e6e6;
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#six-months-option:hover {
  background-color: #e01d1d;
  color: #f2f2f2 !important;
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
#unlimited-option:hover {
  background-color: #00775a;
  color: #f2f2f2 !important;
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* Active Buttons style */
#monthly-option.active {
  background-color: #00775a;
  color: #f2f2f2 !important;
}
#three-months-option.active {
  background-color: #e6e6e6;
}
#six-months-option.active {
  background-color: #e01d1d;
  color: #f2f2f2 !important;
}

.ribbon {
  width: 140px;
  height: 15px;
  font-size: 10px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
  background: #256bff;
  transform: rotate(45deg);
  position: absolute;
  right: -52px;
  top: 16px;
  padding-top: 7px;
  font-size: 10px;
}
