/* نافذة تأكيد مخصصة */
.hubtrend-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.hubtrend-modal-content {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hubtrend-modal-content p {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.6;
  color: #a00;
}

.hubtrend-modal-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.hubtrend-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.hubtrend-btn.ok {
  background-color: #aa0000;
  color: #fff;
}

.hubtrend-btn.cancel {
  background-color: #9a9a9a;
  color: #ffffff;
}

@media (max-width: 480px) {
  .hubtrend-modal-content {
    width: 90%;
    padding: 15px;
  }
}