/* body{
    background-color: azure;
} */
.custom-bg{
    background-color: rgb(143 154 157) !important;
}
.dashboard-padding-admin{
    padding: 5px !important;
}
.navbar-bg{
    background-color: rgb(53 94 135) !important;
}
.navbar-bg-light{
    background-color: rgb(18 136 255) !important;
    color:#fff !important;
}
.tbl-light{
    background-color: rgb(208, 231, 255) !important;
    color:#000000 !important;
}
/* -------Preloader Styles------- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #fff; /* Background color */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-align: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    color: #007bff; /* Spinner color */
}

#welcome-text {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d0530;
}
/* ------perloader end-------- */
.dots {
    display: flex;
    justify-content: center;
    align-items: center;
}
.dots span {
    width: 20px; height: 20px;
    background: #007bff;
    border-radius: 50%;
    margin: 0 5px;
    animation: bounce 0.5s infinite alternate;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    to { transform: translateY(-9px); }
}

/* low stock alert css */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}
.badge.bg-danger {
  animation: blink 1s infinite;
}

/* Alert strip blink css */