/**
 * Buy Me a Coffee Button Styles
 */

.bmc-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  background-color: #fff;
  padding: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.bmc-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.bmc-button {
  display: inline-flex;
  align-items: center;
  background-color: #40DCA5;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  border: 1px solid #000000;
  font-size: 14px;
  transition: all 0.2s ease;
}

.bmc-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  background-color: #37c293;
}

.bmc-close-button {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10000;
}

.bmc-close-button:hover {
  background-color: #f0f0f0;
}

.bmc-label {
  text-align: center;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #555;
}

/* Mobile styles */
@media (max-width: 768px) {
  .bmc-container {
    bottom: 10px;
    right: 10px;
    transform: scale(0.9);
    transform-origin: bottom right;
  }
  
  .bmc-container:hover {
    transform: scale(0.9) translateY(-3px);
  }
}

/* Hide on small screens in landscape mode */
@media (max-height: 450px) and (orientation: landscape) {
  .bmc-container {
    transform: scale(0.7);
    bottom: 5px;
    right: 5px;
  }
}
