/******************************************
 * Button Styles 
 ******************************************/
.button-preview-container {
    margin: 20px 0;
}
.button-preview-container .bstaff-contact-button {
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button-preview-container .btn-style-primary {
    background-color: #0073aa;
    color: white;
}
.button-preview-container .btn-style-primary:hover {
    background-color: #005177;
}
.button-preview-container .btn-style-secondary {
    background-color: #6c757d;
}
.button-preview-container .btn-style-secondary:hover {
    background-color: #565e64;
}
/* Gradient */
.button-preview-container .btn-style-gradient {
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.button-preview-container .btn-style-gradient:hover {
    transform: scale(1.05);
}

/* Glass */
.button-preview-container .btn-style-glass {
    background: rgba(181, 192, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: darkblue;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.button-preview-container .btn-style-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Light */
.button-preview-container .btn-style-light {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #ced4da;
}
.button-preview-container .btn-style-light:hover {
    background-color: #e2e6ea;
}
.button-preview-container .btn-style-dark {
    background-color: #343a40;
    color: white;
}
.button-preview-container .btn-style-dark:hover {
    background-color: #23272b;
}

/* Neon */
.button-preview-container .btn-style-neon {
    color: #fff;
  background-color: #111;
  border: 2px solid #0ff;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  padding: 12px 24px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  transition: box-shadow 0.3s ease;
}
.button-preview-container .btn-style-neon:hover {
    box-shadow: 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff;
} 