/*start:: loader*/
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hide-loader{
    display:none;
}
/*end:: loader*/

.w-115{
    width: 115px;
}

.tbl-action-btns a i {
    font-size: 18px;
}
/* custom.css */

/*
 * Apply the "hover" styles to the default state of the warning toast.
 * This makes it look solid and prominent by default.
*/
#toast-container .toast-warning {
    opacity: 1 !important;
}#toast-container .toast-success {
    opacity: 1 !important;
}
#toast-container .toast-error {
    opacity: 1 !important;
}

.pharmacy-button-alt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    min-width: 150px;
}

.pharmacy-button-alt:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.pharmacy-button-alt:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pharmacy-text-alt {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
    position: relative;
}

/* Color wave effect */
.color-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.4), transparent);
    animation: moveWave 3s infinite;
    z-index: 1;
}
.color-wave-2 {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(39, 41, 170, 0.4), transparent);
    animation: moveWave 3s infinite;
    z-index: 1;
}

/* Arrow icon that moves with the wave */
.arrow-icon {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    color: #4CAF50;
    font-size: 20px;
    animation: moveArrowIcon 3s infinite;
    z-index: 2;
}

@keyframes moveWave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes moveArrowIcon {
    0% {
        left: -50px;
    }
    100% {
        left: calc(100% + 50px);
    }
}
