.ex-feed-card {
    overflow: hidden;
    margin-bottom: 18px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background: linear-gradient(180deg, #516f90 0%, #334d69 100%);
    box-shadow:
        0 14px 28px rgba(26, 45, 65, .22),
        inset 0 1px 0 rgba(255,255,255,.18);
}

.ex-feed-inner {
    overflow: hidden;
    border: 1px solid rgba(26,45,65,.18);
    border-radius: 18px;
    background: #fff;
    box-shadow:
        0 3px 8px rgba(12, 31, 49, .18),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.ex-phone-shot {
    padding: 10px 13px 13px;
    background: #fff;
}

.ex-status {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
}

.ex-status-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ex-status-icons svg {
    width: 15px;
    height: 15px;
}

.ex-phone-number {
    margin: 4px 0 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}

.ex-blur {
    filter: blur(5px);
    user-select: none;
}

.ex-message-bubble {
    max-width: 100%;
    padding: 12px 14px;
    background: #f1f1f1;
    border-radius: 18px 18px 18px 5px;
    font-size: 20px;
    line-height: 1.42;
}

.ex-shot-footer {
    margin-top: 12px;
    color: var(--muted);
    font-size: 11px;
}

.ex-feed-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0px 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
	background: #eef3f8;
}

.ex-link-button {
    padding: 2px;
    border: 0;
    background: none;
    color: #5f6570;
    text-decoration: underline;
}

.ex-vote-panel {
    min-width: 0;
    padding: 8px 0;
}

.ex-vote-lock,
.ex-vote-results {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
}

.ex-vote-lock svg {
    width: 14px;
}

.ex-vote-results {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ex-action-prompt {
    padding: 14px 12px 4px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
	background: #eef3f8;
}

.ex-card-actions {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    grid-template-rows: 36px 24px;
    column-gap: 8px;
    row-gap: 0px;
    align-items: stretch;
    padding: 8px 12px 0px;
    background: #f7f9fb;
    border-top: 1px solid var(--line);
	background: #eef3f8;
}

.ex-card-actions .ex-action-main {
    position: relative;
    width: 100%;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 11px 8px 12px;
    border: 1px solid rgba(0,0,0,.16);
    border-radius: 9px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 1px 1px rgba(0,0,0,.24);
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.34),
        inset 0 -2px 0 rgba(0,0,0,.16),
        0 4px 8px rgba(26,45,65,.18);
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.ex-card-actions .ex-action-main:active {
    transform: translateY(2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.24),
        inset 0 -1px 0 rgba(0,0,0,.14),
        0 1px 3px rgba(26,45,65,.16);
}

.ex-card-actions .ex-action-main:focus-visible {
    outline: 3px solid rgba(21, 94, 239, .28);
    outline-offset: 2px;
}

.ex-card-actions .ex-action-main:disabled {
    opacity: .58;
    cursor: not-allowed;
}

.ex-card-actions .ex-action-main svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.ex-action-delete {
    background: linear-gradient(180deg, #ee5146 0%, #d92d20 58%, #b42318 100%);
}

.ex-action-silent {
    background: linear-gradient(180deg, #ffb343 0%, #f79009 58%, #d96b00 100%);
}

.ex-action-reply {
    background: linear-gradient(180deg, #34c766 0%, #16a34a 58%, #12813d 100%);
}

@media (hover: hover) {
    .ex-card-actions .ex-action-main:hover {
        filter: brightness(.96);
    }
}

.ex-feed-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    border-top: 1px solid var(--line);
	background: #eef3f8;
}

.ex-feed-what-would-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 0px;
    border-top: 1px solid var(--line);
	background: #eef3f8;
}
.ex-copy-row {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 7px 0;
    text-align: right;
}

.ex-download-image {
    font-weight: 700;
}

.ex-copy-row svg {
    width: 14px;
    vertical-align: -2px;
}

.ex-cell-bars {
    height: 14px;
    display: flex;
    align-items: end;
    gap: 1px;
}

.ex-cell-bars b {
    display: block;
    width: 2px;
    background: currentColor;
    border-radius: 1px;
}

.ex-cell-bars b:nth-child(1) {
    height: 4px;
}

.ex-cell-bars b:nth-child(2) {
    height: 7px;
}

.ex-cell-bars b:nth-child(3) {
    height: 10px;
}

.ex-cell-bars b:nth-child(4) {
    height: 13px;
}

.ex-battery {
    position: relative;
    width: 18px;
    height: 9px;
    padding: 1px;
    border: 1.4px solid currentColor;
    border-radius: 2px;
}

.ex-battery::after {
    content: "";
    position: absolute;
    top: 2px;
    right: -3px;
    width: 2px;
    height: 4px;
    background: currentColor;
    border-radius: 0 1px 1px 0;
}

.ex-battery b {
    display: block;
    width: 78%;
    height: 100%;
    background: currentColor;
    border-radius: 1px;
}


@media (max-width: 430px) {
    .ex-message-bubble {
        font-size: 20px;
        padding: 11px 13px;
    }
}

@media (max-width: 390px) {
    .ex-message-bubble {
        font-size: 18px;
        padding: 10px 12px;
    }
}

.ex-opinion-count {
    margin: 0;
    font-size: 12px;
    margin-left: 15%;
}
.ex-copy-row .ex-link-button {
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #cfd6df;
    border-radius: 10px;
    color: #4f5b68;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(24, 42, 62, .10);
}

.ex-copy-row .ex-link-button:active {
    transform: translateY(1px);
}

.ex-action-text {
    width: 100%;
    height: 24px;
    min-height: 24px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 0;
    background: none;
    box-shadow: none;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-shadow: none;
    white-space: nowrap;
}

.ex-reply-text {
    cursor: pointer;
}

.ex-feed-bottom-row > .ex-vote-lock {
    flex: 1 1 auto;
}

.ex-silent-text,
.ex-delete-text {
    gap: 4px;
}