html {
  font-size: 14px;
}

@media (max-width: 576px) {
    #salesChart {
        width: 1200px !important;
        height: 600px !important;
    }
}

.product-image-container {
    position: relative;
    display: inline-block;
}

    .product-image-container img {
        max-height: 50px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
    }

    .product-image-container:hover img {
        transform: scale(5); /* Direct zoom effect on hover */
        z-index: 10;
    }

/* Hide zoomed-image properly */
.zoomed-image {
    display: none;
    position: absolute;
    top: -10px;
    left: 50px;
    z-index: 1000;
    width: 200px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.product-image-container:hover .zoomed-image {
    display: block;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        background-color: red; /* Change this color if needed */
    }
}

.custom-tooltip {
    display: inline-block;
    max-width: 150px; /* Adjust width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: black; /* Ensure text is visible */
}

.navbar .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
}

.navbar .navbar-nav .btn-outline-primary {
    margin-left: 10px;
}

.navbar .navbar-text {
    margin-right: 20px;
    font-weight: bold;
}



/* Blinking effect for dates within 7 days */
@keyframes blink-animation {
    50% {
        opacity: 0.3;
    }
}

.blinking-date {
    color: red;
    font-weight: bold;
    animation: blink-animation 1s infinite alternate; /* Only today's date blinks */
}

/* Static red color for dates within 7 days */
.upcoming-date {
    color: red;
    font-weight: bold;
}
