/* sticky.css */
.sticky-queue {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.sticky {

  backdrop-filter: blur(2px);
 
  border-radius: 12px;
  padding: 10px;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.3s ease;
  max-width: 320px;
  margin-bottom: 10px;
}

.sticky-wrapper {
  position: relative;
}

.sticky a {
  color: #fff;
  text-decoration: underline;
}
.sticky a:hover {
  color: #ffeb3b;
}

.sticky-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative; 
  width: 100%;
}

.sticky-note a.form-link {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4a90e2, #007bff);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.sticky-note a.form-link:hover {
  background: linear-gradient(135deg, #0056b3, #003f8c);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.sticky-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 15px;
  font-weight: bold;
  color: #00000062;
  cursor: pointer;
  transition: 0.2s ease;
  z-index: 10;
}

.sticky-close:hover {
  color: #ff0000;
  transform: scale(1.2);
}

.sticky-reopen-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  padding: 10px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.2s ease-in-out;
}

.sticky-reopen-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}
