/* modal-and-ui-components.css */

/* ========== Calendar ========== */
#calendar {
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
  border-collapse: collapse;
}

.calendar-available {
  text-align: center;
  padding: 10px;
}

/* ========== Pay Button ========== */
.pay-button {
  position: fixed;
  top: 150px;
  right: 10px;
  z-index: 1000;
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}

.pay-button:hover {
  background-color: #0056b3;
}

/* ========== Modal Content (generic wrapper if used outside dashboard) ========== */
.modal-content {
  background-color: white;
  padding: 20px;
}

/* ========== Standard Button (standalone, not dashboard modal buttons) ========== */
.std-button {
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  padding: 6px;
  width: 100%;
  margin: 20px;
}

/* ========== Processing State ========== */
button.processing {
  background-color: white;
  color: red;
  border: 1px solid red;
}

button.processing .dots {
  animation: blinking 1s infinite;
}

/* ========== Misc buttons ========== */
.main {
  text-align: center;
}

/* ========== Social login buttons ========== */
.social-login-buttons {
  display: inline-block;
}

.social-login-buttons .nextend-social-login-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.button.facebook,
.button.twitter {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
}

.button.facebook {
  background-color: #3b5998;
}

.button.facebook:hover {
  background-color: #314e86;
}

.button.twitter {
  background-color: #000;
}

.button.twitter:hover {
  background-color: #333;
}

/* ========== Login buttons ========== */
.login-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #0056b3;
}

.button-note {
  font-size: 0.9em;
  color: #666;
  margin-top: 2px;
  text-align: center;
}

/* ========== Utility Buttons ========== */
.fullwidth-blue {
  display: block;
  width: 100%;
  margin-top: 20px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  padding: 10px 16px;
  text-align: center;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.fullwidth-blue:hover {
  background-color: #005d8c;
}

.blue-button {
  color: white;
  font-size: 20px;
  background-color: #345eeb;
  display: block;
  margin: 0 auto;
  transition: background-color 0.2s ease;
  padding: 12px 22px;
  border-radius: 12px;
}

.blue-button:hover {
  background-color: #20398c;
}

.red-button {
  color: white;
  font-size: 20px;
  background-color: #fc3a3a;
  display: block;
  margin: 0 auto;
  transition: background-color 0.2s ease;
  padding: 12px 22px;
  border-radius: 12px;
}

.red-button:hover {
  background-color: #c22b2b;
}

/* ========== Engagement / Confirmation Messages ========== */
.engagement-confirmed-message {
  color: red;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.engagement-confirmation-box {
  padding: 20px;
  background: #e6ffe6;
  border: 1px solid #b3ffb3;
  color: #1b4f1b;
  text-align: center;
}
