.portal-card-title {
    color: var(--text);
    font-weight: 800;
    margin: 0;
}

.agent-status-wrap {
    text-align: left;
    width: 100%;
}

.agent-linked-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.agent-photo {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--surface-strong);
    border: 4px solid var(--gold);
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-linked-badge {
    display: inline-block;
    background: rgba(53, 255, 35, 0.16);
    border: 1px solid rgba(53, 255, 35, 0.5);
    color: var(--green-text);
    border-radius: 999px;
    padding: 7px 13px;
    font-weight: 800;
}

.agent-name {
    margin-top: 10px;
    color: var(--text);
    font-size: 28px;
    font-weight: 900;
}

.agent-wallet {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
}

.agent-wallet code {
    background: var(--code-bg);
    color: var(--text);
    padding: 3px 7px;
    border-radius: 7px;
}

.agent-divider {
    margin: 0px 0;
    border: 0;
    border-top: 1px solid var(--border);
}

.agent-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.agent-info-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.agent-info-label {
    color: var(--soft-text);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agent-info-value {
    margin-top: 6px;
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
    word-break: break-word;
}

.agent-message {
    text-align: left;
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    color: var(--text);
    border-radius: 14px;
    padding: 24px;
}

.agent-message-warning {
    background: #fff9e6;
    border-color: var(--gold);
}

.agent-message-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.agent-message p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.agent-message p + p {
    margin-top: 14px;
}

.status-approved {
    color: var(--green-text);
}
.agent-info {
	padding-top: 20px; padding-bottom: 20px;
	padding-left: 40px;
	padding-right: 40px;
	border: 1px solid black;
	background-color: #FFFFF0;
}
.status-pending {
    color: #9a6b00;
}

.status-rejected {
    color: var(--red);
}

.membership-rewards {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.membership-rewards ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.membership-rewards li {
    margin-bottom: 8px;
}

.verification-chart-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
}

.verification-chart {
    height: 220px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    align-items: end;
    margin-top: 18px;
}

.verification-bar-item {
    text-align: center;
}

.verification-bar {
    height: 170px;
    background: var(--code-bg);
    border-radius: 10px;
    display: flex;
    align-items: end;
    overflow: hidden;
}

.verification-bar span {
    display: block;
    width: 100%;
    min-height: 4px;
    background: var(--blue);
    border-radius: 10px 10px 0 0;
}

.verification-month {
    margin-top: 8px;
    color: var(--soft-text);
    font-size: 12px;
    font-weight: 800;
}

