.card-menu {
  /* background-color: transparent;
    border: 3px solid #7F7F7F;
    border-radius: 15px; */
}

.card-header > i,
.card-header > img {
  margin-right: 8px;
}

.card-solutions {
  background-color: transparent;
  border: 3px solid #ccc;
  border-radius: 35px;
  overflow: hidden;
}
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

i {
  transition: transform 0.3s;
}

i:hover {
  transform: scale(1.2);
}

.table {
  border: 1px solid #dee2e6;
  border-radius: 5px;
  overflow: hidden;
}

.table th,
.table td {
  padding: 10px;
  vertical-align: middle;
}

.table-bordered td {
  border: 1px solid #dee2e6;
}

.green-light {
  color: #28a745;
}

.divider-vertical {
  width: 1px;
  background-color: #dee2e6;
  height: 100px;
  margin: 0 20px;
}

@media (max-width: 768px) {
  table {
    font-size: 12px;
  }
}

#infoCard,
#contactCard,
#paymentsCard {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#infoCard.show,
#contactCard.show,
#paymentsCard.show {
  display: block;
  opacity: 1;
}

#infoCard.hide,
#contactCard.hide,
#paymentsCard.hide {
  opacity: 0;
  transition: opacity 0.5s ease;
}
