#ccp-popup-icon {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 1000; /* Ensure it stays on top of other elements */
}

.ccp-icon-container {
    position: relative; /* To position the overlay */
    flex: none;
}

.ccp-popup-text {
    margin-left: 10px; /* Space between icon and text */
    display: inline-block;
    background: #ffffff; /* White background for the text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    border-radius: 5px; /* Rounded corners */
    padding: 5px 10px; /* Padding around the text */
    color: #333333; /* Text color */
    font-size: var(--text-font-size, 14px); /* Default text size */
    font-family: inherit;
    position: relative; /* To position the arrow */
    font-weight: 500;
    margin-right: 20px;
    flex: none;
}

.ccp-popup-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -16px; /* Position arrow relative to text */
    transform: translateY(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent; /* Arrow color (matches text background) */
    border-radius: 2px; /* Optional: Rounded corners for the arrow */
    color: black;
}

.ccp-icon {
    border-radius: 50%;
    width: var(--icon-width, 50px); /* Default icon width */
    height: var(--icon-height, 50px); /* Default icon height */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-25px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes swing {
    0% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@media only screen and (max-width: 767px) {
    .ccp-icon {
        width: var(--icon-width-mobile, 40px); /* Mobile icon width */
        height: var(--icon-height-mobile, 40px); /* Mobile icon height */
    }
}

