.org-portal {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 40px;
}

.org-portal__body {
    display: grid;
    gap: 32px;
}

@media (min-width: 992px) {
    .org-portal__body {
        gap: 40px;
    }
}

.profile-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-chip__label {
    font-size: 12px;
    font-weight: 600;
    margin-left: 6px;
    color: var(--profile-muted);
}

.profile-chip__value {
    font-size: 14px;
    font-weight: 700;
    color: var(--profile-text);
}

.profile-chip--success {
    background: rgba(58, 173, 184, 0.22);
    color: #155a60;
}

.profile-chip--warning {
    background: rgba(252, 165, 1, 0.22);
    color: #a15500;
}

.profile-chip--muted {
    background: rgba(108, 124, 140, 0.16);
    color: var(--profile-muted);
}

.profile-chip--info {
    background: rgba(58, 173, 184, 0.18);
    color: var(--profile-primary-dark);
}

.profile-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-hero__button--secondary {
    background: #fff;
    border-color: rgba(58, 173, 184, 0.32);
    color: var(--profile-primary-dark);
}

.profile-hero__button--secondary:hover {
    background: rgba(58, 173, 184, 0.08);
}

.profile-hero__card--primary {
    background: linear-gradient(135deg, rgba(58, 173, 184, 0.14), rgba(40, 123, 132, 0.08));
}

.profile-hero__card--accent {
    background: linear-gradient(135deg, rgba(252, 165, 1, 0.12), rgba(252, 165, 1, 0.04));
}

.profile-hero__card--info {
    background: linear-gradient(135deg, rgba(58, 173, 184, 0.18), rgba(58, 173, 184, 0.08));
    color: var(--profile-primary-dark);
}

.profile-hero__card--muted {
    background: rgba(108, 124, 140, 0.08);
}

.profile-hero__mini-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 576px) {
    .profile-hero__mini-actions {
        flex-direction: row;
        align-items: center;
    }
}

.profile-hero__mini-form {
    display: inline-flex;
}

.profile-hero__mini-button {
    border: 0;
    border-radius: 10px;
    background: rgba(58, 173, 184, 0.16);
    color: var(--profile-primary-dark);
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.profile-hero__mini-button:hover {
    background: rgba(58, 173, 184, 0.26);
    transform: translateY(-1px);
}

.profile-tabs {
    background: transparent;
    border-bottom: 1px solid rgba(227, 232, 238, 0.9);
    padding-bottom: 8px;
}

.profile-tabs__link.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.profile-tabs__link.is-active {
    box-shadow: inset 0 -2px 0 var(--profile-primary);
}

.org-management-simple {
    display: grid;
    gap: 24px;
    text-align: right;
}

.org-management-simple__header {
    display: grid;
    gap: 10px;
}

.org-management-simple__title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--profile-text);
}

.org-management-simple__lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--profile-muted);
}

.org-management-simple__lead strong {
    color: var(--profile-primary-dark);
    font-weight: 700;
}

.org-management-simple__actions {
    display: grid;
    gap: 14px;
}

@media (min-width: 576px) {
    .org-management-simple__actions {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.org-management-simple__button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--profile-border);
    background: #fff;
    color: var(--profile-primary-dark);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(28, 88, 96, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.org-management-simple__button:hover,
.org-management-simple__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(28, 88, 96, 0.12);
    text-decoration: none;
}

.org-management-simple__button-label {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
}

.org-management-simple__button-hint {
    font-size: 13px;
    line-height: 1.8;
    color: var(--profile-muted);
}

.org-management-simple__button--primary {
    background: linear-gradient(135deg, rgba(58, 173, 184, 0.14), rgba(40, 123, 132, 0.22));
    border-color: transparent;
    color: #0f3f45;
}

.org-management-simple__button--primary .org-management-simple__button-hint {
    color: rgba(15, 63, 69, 0.78);
}

.org-management-simple__button--secondary {
    background: rgba(58, 173, 184, 0.08);
}

.org-management-simple__button--ghost {
    background: #fff;
    color: var(--profile-muted);
}

.org-management-simple__button--ghost .org-management-simple__button-label {
    color: var(--profile-muted);
}

.org-messages-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.org-messages-stats li {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--profile-border);
    background: linear-gradient(135deg, rgba(58, 173, 184, 0.12), rgba(58, 173, 184, 0.02));
}

.org-messages-stats__label {
    font-size: 13px;
    color: var(--profile-muted);
}

.org-messages-stats__value {
    font-size: 22px;
    font-weight: 700;
    color: var(--profile-text);
}

.org-messages-stats__note {
    font-size: 12px;
    color: var(--profile-muted);
    line-height: 1.8;
}

.org-messages-suggestions {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    font-size: 14px;
    color: var(--profile-muted);
    line-height: 1.9;
}

.org-messages-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.org-messages-toolbar__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.org-messages-toolbar input,
.org-messages-toolbar select {
    border: 1px solid var(--profile-border);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    min-width: 200px;
}

.org-messages-toolbar select {
    min-width: 180px;
}

.org-messages-toolbar__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
}

.org-messages-list {
    display: grid;
    gap: 20px;
}

.org-messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.org-messages-card {
    background: #fff;
    border: 1px solid var(--profile-border);
    border-radius: 16px;
    padding: 20px 22px;
    display: grid;
    gap: 12px;
    box-shadow: 0 14px 32px rgba(28, 88, 96, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.org-messages-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(28, 88, 96, 0.12);
}

.org-messages-card--unread {
    border-color: rgba(58, 173, 184, 0.5);
    box-shadow: 0 0 0 1px rgba(58, 173, 184, 0.35);
}

.org-messages-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--profile-muted);
}

.org-messages-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--profile-text);
    text-decoration: none;
    line-height: 1.6;
}

.org-messages-card__excerpt {
    font-size: 14px;
    color: var(--profile-text);
    line-height: 1.9;
    margin: 0;
}

.org-messages-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.org-messages-empty {
    border: 1px dashed var(--profile-border);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    color: var(--profile-muted);
    background: rgba(108, 124, 140, 0.04);
}

.org-messages-empty h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--profile-text);
}

.org-messages-preview {
    background: linear-gradient(180deg, rgba(58, 173, 184, 0.08), rgba(58, 173, 184, 0));
    border: 1px dashed rgba(58, 173, 184, 0.4);
    border-radius: 18px;
    padding: 24px;
    min-height: 240px;
    display: grid;
    gap: 16px;
}

.org-messages-preview__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--profile-primary-dark);
    margin: 0;
}

.org-messages-preview__body {
    line-height: 1.9;
    color: var(--profile-text);
    font-size: 14px;
}

.org-messages-preview__empty {
    color: var(--profile-muted);
    margin: 0;
}

.org-messages-detail {
    align-content: start;
    gap: 16px;
}

.org-messages-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--profile-muted);
}

.org-messages-detail__body {
    line-height: 1.9;
    color: var(--profile-text);
    display: grid;
    gap: 14px;
}

.org-messages-detail__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.org-messages-detail__actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.org-messages-char-count {
    font-size: 13px;
    color: var(--profile-muted);
}

.org-messages-form-hint {
    font-size: 13px;
    color: var(--profile-muted);
    line-height: 1.8;
}

.org-messages-form-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.org-messages-form .profile-form__validation {
    margin-bottom: 12px;
}

.profile-alert--info {
    background: rgba(58, 173, 184, 0.12);
    color: var(--profile-primary-dark);
}

.profile-alert--danger {
    background: rgba(220, 53, 69, 0.12);
    color: #a12736;
}

.profile-form__label {
    font-weight: 600;
    color: var(--profile-text);
}

.profile-form__error {
    color: #d9534f;
    font-size: 12px;
}

.profile-form__validation {
    color: #d9534f;
    font-size: 13px;
    text-align: right;
}

.profile-form__field textarea.profile-form__input {
    min-height: 120px;
    resize: vertical;
}

.org-members-stats {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-members-stats__label {
    font-size: 13px;
    color: var(--profile-muted);
}

.org-members-stats__value {
    font-size: 22px;
    font-weight: 700;
    color: var(--profile-text);
}

.org-members-stats__note {
    font-size: 12px;
    color: var(--profile-muted);
    line-height: 1.8;
}

.org-members-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.org-members-actions .profile-button {
    justify-content: flex-start;
}

.org-members-highlights {
    margin: 16px 0 0;
    padding: 0 18px 0 0;
    display: grid;
    gap: 10px;
    list-style: disc;
    color: var(--profile-muted);
    font-size: 14px;
    line-height: 1.9;
}

.org-members-toolbar {
    display: grid;
    gap: 16px;
}

@media (min-width: 992px) {
    .org-members-toolbar {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .org-members-toolbar__actions {
        justify-self: end;
    }
}

.org-members-toolbar__summary {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
    align-items: baseline;
    color: var(--profile-muted);
    font-size: 14px;
}

.org-members-toolbar__title {
    font-weight: 600;
    color: var(--profile-text);
}

.org-members-toolbar__filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 576px) {
    .org-members-toolbar__filters {
        flex-direction: row;
        align-items: center;
    }
}

.org-members-toolbar input,
.org-members-toolbar select {
    border: 1px solid var(--profile-border);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    min-width: 220px;
}

.org-members-toolbar select {
    background: #fff;
}

.org-members-toolbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.org-members-table-wrapper {
    margin-top: 24px;
    border: 1px solid var(--profile-border);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.org-members-table {
    margin: 0;
    color: var(--profile-text);
    min-width: 100%;
}

.org-members-table thead th {
    background: rgba(58, 173, 184, 0.08);
    border-bottom: 1px solid var(--profile-border);
    font-weight: 600;
    color: var(--profile-primary-dark);
}

.org-members-table tbody td {
    border-color: rgba(227, 232, 238, 0.8);
    vertical-align: middle;
    font-size: 14px;
}

.org-members-table tbody tr:hover {
    background: rgba(58, 173, 184, 0.06);
}

.org-members-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.org-members-empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    pointer-events: none;
}

.org-members-empty h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--profile-text);
}

.org-members-empty p {
    margin: 0;
    color: var(--profile-muted);
    line-height: 1.8;
}

.org-members-visible {
    margin-top: 16px;
    font-size: 13px;
    color: var(--profile-muted);
    text-align: right;
}

.org-members-guidelines {
    margin: 12px 0 0;
    padding: 0 20px 0 0;
    list-style: disc;
    display: grid;
    gap: 10px;
    color: var(--profile-muted);
    font-size: 14px;
    line-height: 1.8;
}

.org-members-summary {
    margin: 0;
    display: grid;
    gap: 12px;
}

.org-members-summary__item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--profile-border);
    background: rgba(255, 255, 255, 0.88);
}

.org-members-summary__item dt {
    margin: 0;
    font-weight: 600;
    color: var(--profile-muted);
}

.org-members-summary__item dd {
    margin: 0;
    font-weight: 600;
    color: var(--profile-text);
}

.org-members-summary-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin: 16px 0;
}

.org-contracts-stats {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-contracts-stats__label {
    font-size: 13px;
    color: var(--profile-muted);
}

.org-contracts-stats__value {
    font-size: 22px;
    font-weight: 700;
    color: var(--profile-text);
}

.org-contracts-stats__note {
    font-size: 12px;
    color: var(--profile-muted);
    line-height: 1.8;
}

.org-contracts-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.org-contracts-actions--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.org-contracts-actions .profile-button {
    justify-content: flex-start;
}

.org-contracts-table__org {
    text-align: right;
}

.org-contracts-table__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

@media (min-width: 768px) {
    .org-contracts-table__actions {
        justify-content: flex-end;
    }
}

.org-contracts-highlights {
    margin: 16px 0 0;
    padding: 0 18px 0 0;
    display: grid;
    gap: 10px;
    list-style: disc;
    color: var(--profile-muted);
    font-size: 14px;
    line-height: 1.9;
}

.org-contracts-expiring {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.org-contracts-expiring__title {
    font-weight: 600;
    color: var(--profile-text);
}

.org-contracts-expiring__meta {
    font-size: 13px;
    color: var(--profile-muted);
}

.org-contracts-table .profile-status {
    min-width: 110px;
}

.org-contracts-table__org {
    text-align: right;
    white-space: normal;
}

.org-contracts-table__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.profile-status--danger {
    background: rgba(245, 34, 45, 0.15);
    color: #a1222b;
}

.profile-form__toggle {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-weight: 600;
    color: var(--profile-text);
}

.profile-form__toggle input {
    width: 18px;
    height: 18px;
}

.profile-form__toggle-label {
    font-size: 14px;
    color: var(--profile-text);
}

.org-contracts-form__grid {
    display: grid;
    gap: 12px;
}

@media (min-width: 576px) {
    .org-contracts-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.org-contracts-gift-settings {
    display: grid;
    gap: 12px;
    padding: 16px;
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: rgba(248, 249, 250, 0.6);
}

.profile-form__hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--profile-muted);
}

.org-contracts-guidelines {
    margin: 0;
    padding: 0 18px 0 0;
    list-style: disc;
    display: grid;
    gap: 10px;
    font-size: 14px;
    color: var(--profile-muted);
    line-height: 1.9;
}

.org-contracts-gift-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-contracts-admins {
    margin-top: 16px;
    display: grid;
    gap: 16px;
}

.org-contracts-admins__search {
    display: grid;
    gap: 10px;
}

.org-contracts-admins__grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .org-contracts-admins__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.org-contracts-admins__column {
    display: grid;
    gap: 10px;
}

.org-contracts-admins__title {
    margin: 0;
    font-size: 16px;
    color: var(--profile-text-strong);
}

.org-contracts-admins__list {
    display: grid;
    gap: 8px;
}

.org-contracts-admins__item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background-color: rgba(248, 249, 250, 0.6);
}

.org-contracts-admins__primary {
    flex: 1;
    text-align: right;
    color: var(--profile-text);
    font-weight: 600;
}

.org-contracts-admins__meta {
    font-size: 12px;
    color: var(--profile-muted);
}

.org-contracts-history-form {
    display: grid;
    gap: 16px;
}

.org-contracts-history-form__grid {
    display: grid;
    gap: 12px;
}

@media (min-width: 576px) {
    .org-contracts-history-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.org-contracts-status-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.org-contracts-status-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--profile-text);
    font-size: 14px;
}

.org-contracts-status-list strong {
    font-weight: 700;
}

.org-contracts-assessment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.org-contracts-assessment-list__title {
    font-weight: 600;
    color: var(--profile-text);
}

.org-contracts-assessment-list__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--profile-muted);
}

@media (min-width: 576px) {
    .org-contracts-assessment-list__meta {
        flex-direction: row;
        justify-content: flex-end;
        gap: 12px;
    }
}

.org-contracts-activity-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.org-contracts-activity-list__title {
    font-weight: 600;
    color: var(--profile-text);
}

.org-contracts-activity-list__meta {
    font-size: 13px;
    color: var(--profile-muted);
}

.org-contracts-pagination {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.org-contracts-pagination ul {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-contracts-pagination li {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.org-contracts-pagination li.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.org-contracts-pagination li.is-active {
    background-color: var(--profile-primary);
    border-color: var(--profile-primary);
}

.org-contracts-pagination li a {
    display: block;
    padding: 6px 12px;
    color: var(--profile-text);
    text-decoration: none;
}

.org-contracts-pagination li.is-active a {
    color: #fff;
}

.org-contracts-pagination__summary {
    font-size: 13px;
    color: var(--profile-muted);
    margin: 0;
}

.profile-table th a {
    color: var(--profile-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.profile-table th a span {
    font-size: 12px;
    color: var(--profile-muted);
}

.org-messages-simple {
    display: grid;
    gap: 24px;
    text-align: right;
}

.org-messages-simple__header {
    display: grid;
    gap: 8px;
}

.org-messages-simple__title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--profile-text);
}

.org-messages-simple__lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--profile-muted);
}

.org-messages-simple__lead strong {
    color: var(--profile-primary-dark);
    font-weight: 700;
}

.org-messages-simple__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.org-messages-simple__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid var(--profile-primary-light);
    background: var(--profile-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.org-messages-simple__button:hover,
.org-messages-simple__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(28, 88, 96, 0.16);
    text-decoration: none;
}

.org-messages-simple__button--ghost {
    background: #fff;
    color: var(--profile-primary-dark);
    border-color: rgba(58, 173, 184, 0.28);
}

.org-messages-simple__button--ghost:hover,
.org-messages-simple__button--ghost:focus {
    background: rgba(58, 173, 184, 0.08);
}

.org-messages-simple__table-wrapper {
    overflow-x: auto;
}

.org-messages-simple__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
}

.org-messages-simple__table th,
.org-messages-simple__table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(227, 232, 238, 0.8);
    text-align: right;
}

.org-messages-simple__table th {
    background: rgba(58, 173, 184, 0.06);
    font-size: 14px;
    font-weight: 700;
    color: var(--profile-primary-dark);
}

.org-messages-simple__table td a {
    color: var(--profile-primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.org-messages-simple__table td a:hover,
.org-messages-simple__table td a:focus {
    text-decoration: underline;
}

.org-messages-simple__empty {
    text-align: center;
    padding: 32px 18px;
    color: var(--profile-muted);
    font-weight: 500;
}

.org-messages-simple__status-cell {
    text-align: center;
}

.org-messages-simple__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(58, 173, 184, 0.12);
    color: var(--profile-primary-dark);
}

.org-messages-simple__status::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.org-messages-simple__status--unread {
    background: rgba(58, 173, 184, 0.18);
    color: #0f6470;
}

.org-messages-simple__status--read {
    background: rgba(108, 124, 140, 0.16);
    color: #57616d;
}

@media (max-width: 640px) {
    .org-messages-simple__table thead {
        display: none;
    }

    .org-messages-simple__table tr {
        display: grid;
        gap: 8px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(227, 232, 238, 0.8);
    }

    .org-messages-simple__table td {
        border: 0;
        padding: 0;
        font-size: 14px;
    }

    .org-messages-simple__table td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        color: var(--profile-muted);
        margin-bottom: 4px;
    }

    .org-messages-simple__status-cell {
        display: flex;
        justify-content: flex-end;
    }
}
.org-messages-simple__status-col {
    width: 150px;
    text-align: center;
}
