.show-button {
  /*width: 120px;*/
  /*height: 60px;*/
  display: inline-block;
  padding: 0 24px;
  background-color: #015E80 !important;
  background: #015E80 !important;
  border: none !important;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: white !important;
  font-weight: 300;
  font-size: 40px;
  font-style: normal;
  transition: box-shadow 0.9s ease;
  z-index: 500;
}

/* Specific styling for show buttons in dropdown rows */
.show-button[id*="show-button"] {
  height: auto;
  font-size: 18px;
  padding: 8px 20px !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  line-height: 1.2;
  background-color: #015E80 !important;
  background: #015E80 !important;
  color: white !important;
  border: none !important;
}

.show-button .text {
  display: inline-block;
  opacity: 1;
}

.show-button:hover {
  box-shadow: 0 0 10px rgba(52, 91, 219, 0.7), 0 0 20px rgba(56, 106, 217, 0.5);
}

/* Loading Animation Styles */
.show-button.loading {
  background-color: #555;
  cursor: not-allowed;
  opacity: 0.8;
}

.show-button.loading:hover {
  box-shadow: none;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Loading state for button text */
.show-button.loading .text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Disabled state styling */
.show-button:disabled {
  background-color: #555;
  cursor: not-allowed;
  opacity: 0.8;
}

.show-button:disabled:hover {
  box-shadow: none;
}
