#justus-container {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

#justus-trigger {
    background-color: #FFFC00;
    color: #000000;
    padding: 10px 18px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

#justus-trigger img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid black;
    animation: pulse 2s infinite;
}

#justus-frame {
    width: 350px;
    height: 520px;
    border: none;
    border-radius: 12px;
    display: none;
    margin-top: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}