/* Phone Order Button Styles */
.btn-phone-order {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
  margin-left: 10px;
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-phone-order:hover {
  background-color: #218838;
  border-color: #1e7e34;
  color: white;
  text-decoration: none;
}

.btn-phone-order:focus {
  color: white;
  text-decoration: none;
}

.btn-phone-order i {
  margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-phone-order {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}