

/* Buttons */
.btn-equal {
  min-width: 230px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.25s ease;
}
.btn-equal:hover { transform: scale(1.05); }


/* زر ابيض شفاف */
.btn-transparent {
  background-color: rgba(255, 255, 255, 0.6) !important;
  border-width: 2px;
}

/* Floating button */
.btn-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.btn-float:hover { transform: scale(1.1) rotate(10deg); }

/* Buttons hover colors */
.btn-outline-success.btn-transparent:hover {
  background-color: #28a745 !important;
  color: #fff !important;
  border-color: #28a745 !important;
}
.btn-outline-primary.btn-transparent:hover {
  background-color: #0d6efd !important;
  color: #fff !important;
  border-color: #0d6efd !important;
}
.btn-outline-danger.btn-transparent:hover {
  background-color: #dc3545 !important;
  color: #fff !important;
  border-color: #dc3545 !important;
}
.btn-outline-secondary.btn-transparent:hover {
  background-color: #6c757d !important;
  color: #fff !important;
  border-color: #6c757d !important;
}

/* 🔄 حركة خفيفة لزر التحديث */
.btn-refresh:hover i {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}




/* =========================================
   3. PAGINATION
========================================= */

.pagination {
  justify-content: center;
}
.pagination a,
.pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 12px;
  border: 1px solid #868686;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
}
.page-item.active .page-link {
  background-color: crimson !important;
  border-color: crimson !important;
  color: white !important;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(220, 20, 60, 0.5);
}



/* =========================================
   5. COMPONENTS
========================================= */

/* ==== Universal Card Base (Used by all cards) ==== */
.card {
  border-radius: 15px;
  border: 3px solid rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: 0.25s ease-in-out;
  background: #fff;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

/* ==== Titles & body ==== */
.card-title {

  min-height: 25px;
}
.card-body {
  text-align: center;

}
