.aet-activity-bubble-root {
    position: fixed;
    z-index: 99999;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.aet-activity-bubble-root--bottom-right {
    right: 16px;
    bottom: var(--aet-activity-bubble-bottom-desktop, 18px);
}

.aet-activity-bubble-root--bottom-left {
    left: 16px;
    bottom: var(--aet-activity-bubble-bottom-desktop, 18px);
}

.aet-activity-bubble-root--middle-right {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.aet-activity-bubble-root--middle-left {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.aet-activity-bubble-root--top-right {
    right: 16px;
    top: 20px;
}

.aet-activity-bubble-root--top-left {
    left: 16px;
    top: 20px;
}

.aet-activity-bubble {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    color: #1d2327;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    pointer-events: auto;
}

.aet-activity-bubble__text {
    flex: 1 1 auto;
    min-width: 0;
}

.aet-activity-bubble__text a {
    color: #003f7f;
    font-weight: 700;
    text-decoration: none;
}

.aet-activity-bubble__text a:hover,
.aet-activity-bubble__text a:focus {
    text-decoration: underline;
}

.aet-activity-bubble__close {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin: -4px -6px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #646970;
    cursor: pointer;
    font-size: 22px;
    line-height: 22px;
}

.aet-recent-supporters {
    margin: 16px 0;
    padding: 16px;
    border: 1px solid #dcdcde;
    border-radius: 10px;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.aet-recent-supporters__title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
}

.aet-recent-supporters__list {
    margin: 0;
    padding-left: 18px;
}

.aet-recent-supporters__item {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4;
}

.aet-recent-supporters__item:last-child {
    margin-bottom: 0;
}

.aet-recent-supporters__item a {
    color: #003f7f;
    font-weight: 700;
    text-decoration: none;
}

.aet-recent-supporters__item a:hover,
.aet-recent-supporters__item a:focus {
    text-decoration: underline;
}

.aet-recent-supporters__empty {
    margin: 0;
}

@media (max-width: 600px) {
    .aet-activity-bubble-root {
        right: 12px;
        left: 12px;
        width: auto;
    }

    .aet-activity-bubble-root--bottom-right,
    .aet-activity-bubble-root--bottom-left {
        bottom: var(--aet-activity-bubble-bottom-mobile, 12px);
    }

    .aet-activity-bubble-root--middle-right,
    .aet-activity-bubble-root--middle-left {
        top: 50%;
        transform: translateY(-50%);
    }

    .aet-activity-bubble-root--top-right,
    .aet-activity-bubble-root--top-left {
        top: 12px;
    }

    .aet-activity-bubble {
        font-size: 14px;
    }
}
