/* =========================
   Faculty Page Only
   Used by: faculty.html
========================= */

.chip{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
}

/* Toast */
.toast{
  text-align: center;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 9999;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--stroke);
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive hint for table on small screens */
@media (max-width: 900px){
  .table-hint::before{
    content: '← اسحب يمين/يسار لرؤية كل الأعمدة →';
    display:block;
    text-align:center;
    padding:10px;
    background: rgba(79,70,229,.22);
    border: 1px solid var(--stroke);
    border-radius: 14px 14px 0 0;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
  }
  table{ min-width: 720px; }
}
