.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.button-view-stock {
    background-color: #2e3192;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    text-align: center;
}

.button-view-stock:hover {
    background-color: #00984a;
    color: white;
}
body {
  cursor: url(https://allsafepharma.com/wp-content/uploads/2024/10/image-removebg-preview-9-1.png), auto;
}

#cursor-trail {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 0, 0, 0.5); /* Customize this color */
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.05s linear;
}

table {
    border-collapse: collapse;
    width: 100%;
    background-color: white;
}

th, td {
    border: 1px solid #333;
    text-align: center;
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

thead th {
    background-color: #a6fcff;
}

tbody td:hover {
    background-color: #bcff66; /* Highlight column on hover */
    transform: scale(1.1); /* Zoom-in effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow on zoom */
    z-index: 1;
}

tbody td {
    position: relative;
}

.capsule-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #0073e6; /* Button background color */
    border: 2px solid #0073e6; /* Border color */
    border-radius: 50px; /* Rounded edges for capsule shape */
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.capsule-button:hover {
    background-color: #005bb5; /* Darker shade on hover */
    color: #ffffff;
}
.floating-flashy-button {
  position: fixed;
  right: 20px;
  bottom: 70px;
  padding: 20px 30px;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  border-radius: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  text-decoration: none;
  animation: pop 1.5s infinite;
  z-index: 1000;
}

@keyframes pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.floating-flashy-button:hover {
  cursor: pointer;
  background-color: #ffa500;
}

/* Default font size for desktop */
.floating-flashy-button {
    font-size: 16px; /* Adjust as needed for desktop */
}

/* Smaller font size for mobile */
@media (max-width: 768px) {
    .floating-flashy-button {
        font-size: 12px; /* Adjust as needed for mobile */
    }
}
