/*
Theme Name:   Voxel (child theme)
Theme URI:    https://getvoxel.io/
Author:       27collective
Author URI:   https://27collective.net/
Template:     voxel
Version:      1.0
Text Domain:  voxel-child
*/


.hopotel-notif {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 9999;
}
.hopotel-notif.show {
  opacity: 1;
  transform: translateY(0);
}
.hopotel-notif.success {
  background: #2ecc71;
}
.hopotel-notif.error {
  background: #e74c3c;
}
