/* Admin Floating Action Button */
.adminActions {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
}

/* Main round helpline button */
.adminButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #F37124;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  cursor: pointer;
}

.adminButton i {
  font-size: 22px;
}

.adminButton:hover {
  box-shadow: 0 0 10px 2px rgba(51, 51, 51, .5);
  transform: scale(1.1);
  transition: transform .2s ease;
  color: #fff;
}

/* Container for buttons and labels */
.adminButtons {
  position: absolute;
  bottom: 120%;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Each item: circle + label */
.adminItem {
  display: flex;
  align-items: center;
  margin: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity .2s ease, transform .2s ease;
}

/* Circle button */
.adminItem a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 0 5px 1px rgba(51, 51, 51, .3);
  margin-right: 8px;
}

.adminItem a:hover {
  box-shadow: 0 0 10px 2px rgba(51, 51, 51, .5);
  transform: scale(1.1);
  transition: transform .2s ease;
  cursor: pointer;
  color: #fff;
  background-color: #20356D;
}

/* Label outside */
.label {
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}

/* Each button color + delay */
.adminItem:nth-child(1) a {
  background-color: #4CAF50;
  transition-delay: .3s;
}

.adminItem:nth-child(2) a {
  background-color: #25D366;
  transition-delay: .25s;
}

.adminItem:nth-child(3) a {
  background-color: #03a9f4;
  transition-delay: .2s;
}

/* On hover of main block, show items */
.adminActions:hover .adminItem {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Footer Social Icons and Links */
.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #F37124;
  border-radius: 50%;
  color: #F37124;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #F37124;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #F37124;
}
