/* File: modal-and-ui-components.css
   Description: Shared modal and non-button UI structure. Button visuals live in buttons.css.
*/

/* ========== Calendar ========== */
#calendar {
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
  border-collapse: collapse;
}

.calendar-available {
  text-align: center;
  padding: 10px;
}

/* ========== Modal Content (generic wrapper if used outside dashboard) ========== */
.modal-content {
  background-color: #fff;
  padding: 20px;
}

/* ========== Processing State ========== */
/* Keep only minimal state hooks. Visual button styling belongs in buttons.css. */
button.processing .dots {
  animation: blinking 1s infinite;
}

/* ========== Misc layout ========== */
.main {
  text-align: center;
}

/* ========== Social login layout ========== */
.social-login-buttons {
  display: inline-block;
}

.social-login-buttons .nextend-social-login-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ========== Login area layout ========== */
.login-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.button-note {
  font-size: 0.9em;
  color: #666;
  margin-top: 2px;
  text-align: center;
}

/* ========== 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;
}