/* 🎨 استایل عمومی برای همه جداول */
body {
  font-family: 'Vazirmatn', sans-serif;
  background-color: #f0f2f5;
}

h1 {
  text-align: center;
  margin: 30px 0;
  font-weight: bold;
  color: #2c3e50;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

.table-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 40px;
}

.table-hover tbody tr:hover {
  background-color: #f8f9fa;
  transform: scale(1.01);
  transition: 0.2s ease-in-out;
}

/* 🎯 استایل مخصوص جدول اطلاعیه‌ها */
.notices-table thead {
  background-color: #001f3f; /* سرمه‌ای */
  color: #fff;
}

.btn-view {
  background-color: #dc3545; /* قرمز خوش‌رنگ */
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-view:hover {
  background-color: #b02a37;
  transform: translateY(-2px);
}

/* 🎯 استایل مخصوص جدول جزوات */
.notes-table thead {
  background-color: #001f3f; /* سرمه‌ای */
  color: #fff;
}

.btn-download {
  background-color: #198754; /* سبز */
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-download:hover {
  background-color: #146c43;
  transform: translateY(-2px);
}
