/* ===== availability.css ===== */

/* زر/مربع وقت */
.slot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 10px 12px;
  margin: 6px;
  border-radius: 10px;
  border: 1px solid #283244;
  background: #0f1522;
  color: #e6e8ec;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.05s ease,
    opacity 0.2s ease,
    border-color 0.2s;
}
.slot-btn:active {
  transform: translateY(1px);
}
.slot-btn[aria-disabled='true'] {
  pointer-events: none;
  opacity: 0.45;
}

/* العميل: غير متاح */
.slot--client-unavailable {
  background: #0e1520;
  color: #9aa3af;
  border-color: #2a3446;
  text-decoration: line-through;
}

/* الموظف: الوقت المحجوز بالكامل */
.slot--staff-full {
  background: #2a1414;
  color: #ffb4b4;
  border-color: #462020;
}

/* مختار */
.slot--selected {
  outline: 3px solid rgba(148, 98, 28, 0.35);
  border-color: #94621c;
}
