/* Mobile Bottom Action Bar */
.fixed-bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none; /* Hidden by default */
  height: 60px;
}

.fixed-bottom-action-bar .row {
  height: 100%;
  margin: 0;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #4a5568;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  padding: 5px 0;
  border-right: 1px solid #f0f0f0;
}

.action-btn:last-child {
  border-right: none;
}

.action-btn i {
  font-size: 20px;
  margin-bottom: 4px;
  display: block;
}

.action-btn.whatsapp-btn {
  color: #25D366;
}

.action-btn:hover {
  background-color: #f8f9fa;
  color: #1a56db;
  text-decoration: none;
}

.action-btn.whatsapp-btn:hover {
  background-color: rgba(37, 211, 102, 0.1);
}

/* Show only on mobile */
@media (max-width: 767px) {
  .fixed-bottom-action-bar {
    display: block;
  }
  
  /* Add padding to body to prevent content from being hidden behind the fixed bar */
  body {
    padding-bottom: 60px;
  }
}

/* Ensure the bar is above other content */
.fixed-bottom-action-bar {
  z-index: 9999;
}
