.custom-crud-links {
    padding: 4px 7px;
    border-radius: 10px;
    font-size: 12px;
}

.custom-crud-links::before {
    content: none !important;
}

.ahmed-loader {
    width: 48px;
    height: 48px;
    border: 5px dotted #fbbc06;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.shimmer-line {
    background: linear-gradient(90deg, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: shimmer 2s ease infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
  }
}

.intl-tel-input {
    width: 100% !important;
}

.fixed-whatsapp-link {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1030;
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    font-size: 30px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fixed-whatsapp-link:hover,
.fixed-whatsapp-link:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
}

@media (max-width: 575.98px) {

    .fixed-whatsapp-link {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}