.ct-browser-toast-stack {
    position: fixed;
    z-index: 10000;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 10px;
    width: min(390px, calc(100vw - 36px));
}

.ct-browser-toast {
    border: 1px solid rgba(249, 115, 22, .55);
    border-radius: 14px;
    padding: 14px 42px 14px 16px;
    background: #071316;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    color: #fff;
    cursor: pointer;
    position: relative;
}

.ct-browser-toast strong,
.ct-browser-toast span {
    display: block;
}

.ct-browser-toast strong {
    margin-bottom: 4px;
    color: #fb923c;
}

.ct-browser-toast span {
    color: #d7e0e2;
    font-size: 13px;
    line-height: 1.45;
}

.ct-browser-toast button {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.notification-device-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 14px 0 18px;
    padding: 14px 16px;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    background: #f8fbff;
    color: #43536a;
    font-size: 13px;
    line-height: 1.55;
}

.notification-device-note strong {
    flex: 0 0 auto;
    color: #172033;
}

.notification-copy {
    min-width: 0;
}

.notification-delivery-history {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.notification-delivery-chip {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 4px 9px;
    border: 1px solid #d7e0ec;
    border-radius: 999px;
    background: #f8fafc;
    color: #526277;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .01em;
}

.notification-delivery-chip.is-sent,
.notification-delivery-chip.is-delivered,
.notification-delivery-chip.is-accepted {
    border-color: #b7e2c7;
    background: #effaf3;
    color: #18723d;
}

.notification-delivery-chip.is-processing,
.notification-delivery-chip.is-queued {
    border-color: #bcd7ff;
    background: #eff6ff;
    color: #245da8;
}

.notification-delivery-chip.is-failed {
    border-color: #f1bcbc;
    background: #fff3f3;
    color: #b42318;
}

.notification-delivery-chip.is-suppressed {
    border-color: #e3d7b4;
    background: #fff9e8;
    color: #806313;
}

@media (max-width: 640px) {
    .notification-device-note {
        display: grid;
    }

    .notification-delivery-history {
        gap: 5px;
    }
}
