/**
 * Member Registration Pro — Public Styles
 *
 * @package MemberRegistrationPro
 * @since   1.0.0
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
    --mrp-success: #28a745;
    --mrp-success-bg: #d4edda;
    --mrp-success-text: #155724;
    --mrp-warning-bg: #fff3cd;
    --mrp-warning-text: #856404;
    --mrp-danger: #dc3545;
    --mrp-danger-bg: #f8d7da;
    --mrp-danger-text: #721c24;
    --mrp-gray-100: #f8f9fa;
    --mrp-gray-200: #e9ecef;
    --mrp-gray-300: #dee2e6;
    --mrp-gray-500: #6c757d;
    --mrp-gray-700: #495057;
    --mrp-gray-900: #212529;
    --mrp-border: #ced4da;
    --mrp-radius: 6px;
    --mrp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --mrp-transition: 0.2s ease;
}

/* ==========================================================================
   Form Wrappers
   ========================================================================== */

.mrp-registration-form-wrap,
.mrp-login-form-wrap,
.mrp-password-reset-wrap {
    max-width: 100%;
    margin: 32px auto;
    padding: 32px;
    font-family: var(--mrp-font);
    background: #fff;
    border: 1px solid var(--mrp-gray-200);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mrp-account-wrap {
    max-width: 100%;
    margin: 32px auto;
    padding: 32px;
    font-family: var(--mrp-font);
    background: #fff;
    border: 1px solid var(--mrp-gray-200);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mrp-member-directory-wrap {
    margin: 32px auto;
    padding: 32px;
    font-family: var(--mrp-font);
}

/* ==========================================================================
   Form Title
   ========================================================================== */

.mrp-form-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--mrp-gray-900);
    margin: 0 0 24px 0;
    text-align: center;
}

.mrp-form-description {
    text-align: center;
    color: var(--mrp-gray-500);
    margin-bottom: 20px;
}

/* ==========================================================================
   Form Fields
   ========================================================================== */

.mrp-form-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.mrp-field-wrap {
    width: 100%;
    margin-bottom: 18px;
}

.mrp-field-half {
    width: calc(50% - 10px);
}

.mrp-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--mrp-gray-700);
    margin-bottom: 6px;
}

.mrp-required {
    color: var(--mrp-danger);
    margin-left: 2px;
}

.mrp-input {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-family: var(--mrp-font);
    color: var(--mrp-gray-900);
    background: #fff;
    border: 1px solid var(--mrp-border);
    border-radius: var(--mrp-radius);
    transition: border-color var(--mrp-transition), box-shadow var(--mrp-transition);
    box-sizing: border-box;
    outline: none;
}

.mrp-input:focus {
    border-color: var(--mrp-primary, #7a1a2e);
    box-shadow: 0 0 0 3px rgba(122, 26, 46, 0.15);
}

.mrp-input::placeholder {
    color: var(--mrp-gray-500);
    opacity: 0.7;
}

/* Validation error state */
.mrp-input--error,
.mrp-input--error:focus {
    border-color: var(--mrp-danger);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.mrp-field-error {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--mrp-danger);
    line-height: 1.4;
}

/* ==========================================================================
   Inline Fields (checkboxes, radio)
   ========================================================================== */

.mrp-field-inline {
    display: flex;
    align-items: center;
}

.mrp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--mrp-gray-700);
    cursor: pointer;
}

.mrp-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--mrp-primary);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.mrp-form-actions {
    margin-top: 8px;
    margin-bottom: 12px;
}

.mrp-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--mrp-font);
    border: none;
    border-radius: var(--mrp-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--mrp-transition);
    text-align: center;
}

.mrp-btn-primary {
    width: 100%;
    background: var(--mrp-primary, #7a1a2e);
    color: #fff;
}

.mrp-btn-primary:hover {
    background: var(--mrp-hover, #5c1424);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122, 26, 46, 0.3);
}

.mrp-btn-primary:active {
    transform: translateY(0);
}

.mrp-btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* BEM variant used on account page */
.mrp-btn--primary {
    width: 100%;
    background: var(--mrp-primary, #7a1a2e);
    color: #fff;
}

.mrp-btn--primary:hover {
    background: var(--mrp-hover, #5c1424);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122, 26, 46, 0.3);
}

.mrp-btn--primary:active {
    transform: translateY(0);
}

/* ==========================================================================
   Form Footer
   ========================================================================== */

.mrp-form-footer {
    text-align: center;
    margin-top: 16px;
    color: var(--mrp-gray-500);
    font-size: 14px;
}

.mrp-form-footer a {
    color: var(--mrp-primary, #7a1a2e);
    text-decoration: none;
    font-weight: 500;
}

.mrp-form-footer a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Alerts (Success / Error)
   ========================================================================== */

.mrp-alert {
    padding: 14px 18px;
    border-radius: var(--mrp-radius);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.mrp-alert p {
    margin: 0;
}

.mrp-alert ul {
    margin: 0;
    padding-left: 20px;
}

.mrp-alert ul li {
    margin-bottom: 4px;
}

.mrp-alert--success {
    background: var(--mrp-success-bg);
    color: var(--mrp-success-text);
    border: 1px solid #c3e6cb;
}

.mrp-alert--error {
    background: var(--mrp-danger-bg);
    color: var(--mrp-danger-text);
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   Status Badges
   ========================================================================== */

.mrp-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    background: var(--mrp-gray-200);
    color: var(--mrp-gray-700);
}

.mrp-status--approved {
    background: var(--mrp-success-bg);
    color: var(--mrp-success-text);
}

.mrp-status--pending {
    background: var(--mrp-warning-bg);
    color: var(--mrp-warning-text);
}

.mrp-status--rejected {
    background: var(--mrp-danger-bg);
    color: var(--mrp-danger-text);
}

/* ==========================================================================
   Notices
   ========================================================================== */

.mrp-notice {
    padding: 12px 16px;
    border-left: 4px solid var(--mrp-primary, #7a1a2e);
    background: #f0f6fc;
    color: var(--mrp-gray-900);
    margin: 16px 0;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
}

/* ==========================================================================
   Account Page
   ========================================================================== */

.mrp-account-wrap h2 {
    margin-top: 0;
}

.mrp-account-status {
    margin-top: 12px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 600px) {

    .mrp-registration-form-wrap,
    .mrp-login-form-wrap,
    .mrp-password-reset-wrap,
    .mrp-account-wrap,
    .mrp-member-directory-wrap {
        margin: 16px;
        padding: 20px;
    }

    .mrp-field-half {
        width: 100%;
    }
}

/* ==========================================================================
   Account Page — Modern Design
   ========================================================================== */

.mrp-account-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--mrp-primary, #7a1a2e) 0%, var(--mrp-hover, #5c1424) 100%);
    border-radius: 16px;
    margin-bottom: 28px;
    color: #fff;
}

.mrp-account-avatar img {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.mrp-account-header-info h2 {
    margin: 0 0 4px 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.mrp-account-email {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 10px 0;
    font-size: 14px;
}

/* Tabs */
.mrp-account-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    padding: 6px;
    background: #f3f4f6;
    border-radius: 12px;
    flex-wrap: wrap;
}

.mrp-account-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mrp-account-tab svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mrp-account-tab:hover {
    color: var(--mrp-primary, #7a1a2e);
    background: rgba(255, 255, 255, 0.6);
}

.mrp-account-tab--active {
    color: var(--mrp-primary, #7a1a2e);
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

.mrp-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: var(--mrp-primary, #7a1a2e);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

/* Header logout button */
.mrp-header-logout {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mrp-header-logout:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Panels */
.mrp-account-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    animation: mrpFadeIn 0.25s ease;
}

@keyframes mrpFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile table */
.mrp-profile-table {
    width: 100%;
    border-collapse: collapse;
}

.mrp-profile-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    vertical-align: top;
}

.mrp-profile-table td:first-child {
    width: 220px;
    color: #6b7280;
    font-weight: 500;
}

.mrp-profile-table tr:last-child td {
    border-bottom: none;
}

.mrp-profile-table h3 {
    color: var(--mrp-text, #1a1a2e);
}

/* Status badges */
.mrp-status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.mrp-status--approved {
    background: rgba(40, 167, 69, 0.12);
    color: #15803d;
}

.mrp-status--pending {
    background: rgba(245, 158, 11, 0.12);
    color: #92400e;
}

/* Header-specific badges (on dark gradient) */
.mrp-status--header-approved {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.mrp-status--header-pending {
    background: rgba(255, 200, 50, 0.25);
    color: #fff;
    border: 1px solid rgba(255, 200, 50, 0.4);
}

.mrp-muted {
    color: #9ca3af;
    font-style: italic;
}

/* Password toggle */
.mrp-password-wrap {
    position: relative;
}

.mrp-password-wrap .mrp-input {
    padding-right: 48px;
}

.mrp-pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #9ca3af;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.mrp-pw-toggle:hover {
    color: var(--mrp-primary, #7a1a2e);
}

/* Section divider heading */
.mrp-section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
    font-size: 16px;
    font-weight: 700;
    color: var(--mrp-text, #1a1a2e);
}

.mrp-section-divider svg {
    color: var(--mrp-primary, #7a1a2e);
    flex-shrink: 0;
}

/* Logo upload area */
.mrp-logo-upload-area {
    margin-top: 4px;
}

.mrp-logo-preview {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.mrp-logo-preview img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 8px;
    border: 1px solid #ddd;
    object-fit: cover;
}

.mrp-remove-logo {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    border: 2px solid #fff;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.mrp-remove-logo:hover {
    background: #c82333;
}

.mrp-file {
    margin-top: 6px;
}

.mrp-field-hint {
    color: #888;
    font-size: 12px;
    margin-top: 4px;
}

/* Account notices */
.mrp-account-notices {
    margin-bottom: 16px;
}

.mrp-notice {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
}

.mrp-notice--success {
    background: var(--mrp-success-bg, #d4edda);
    color: var(--mrp-success-text, #155724);
    border: 1px solid #c3e6cb;
}

.mrp-notice--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   Proposer Badges
   ========================================================================== */
.mrp-wrapper .mrp-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.mrp-wrapper .mrp-proposer,
.mrp-wrapper .mrp-badge--proposer {
    background: linear-gradient(135deg, #1e73be, #155a96);
    color: #ffffff !important;
}

.mrp-wrapper .mrp-seconder,
.mrp-wrapper .mrp-badge--seconder {
    background: linear-gradient(135deg, #00a32a, #007a20);
    color: #ffffff !important;
}

.mrp-badge--pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.mrp-badge--approved,
.mrp-badge--accepted {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mrp-badge--rejected {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Layout Utilities */
.mrp-card-header {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
}

.mrp-profile-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Badge Alignment Rows */
.mrp-badges-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
}

.mrp-badges-left {
    justify-content: flex-start;
}

.mrp-badges-center {
    justify-content: center;
}

/* Remove bottom margin from badges within rows */
.mrp-badges-row .mrp-badge {
    margin: 0 !important;
}

/* Search Form */
.mrp-search-form {
    background: #f9fafb;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.mrp-directory-filters {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

.mrp-directory-filters>.mrp-btn-primary {
    width: auto;
}

.mrp-directory-filters input[type="text"] {
    flex: 1;
    min-width: 0;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mrp-directory-filters select.mrp-select,
.mrp-directory-filters a.mrp-btn-secondary {
    flex: 0 0 auto;
    margin-bottom: 0;
}

.mrp-directory-filters button.mrp-btn-primary {
    white-space: nowrap;
    padding: 12px 32px;
    border-radius: 4px;
    margin-bottom: 0;
    font-size: 15px;
}

@media (max-width: 768px) {
    .mrp-directory-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .mrp-directory-filters button.mrp-btn-primary,
    .mrp-directory-filters select.mrp-select,
    .mrp-directory-filters a.mrp-btn-secondary {
        width: 100%;
    }
}

/* ==========================================================================
   Member Directory
   ========================================================================== */
.mrp-directory-filter-form {
    background: #f8f9fa;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
}

.mrp-directory-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.mrp-directory-filters .mrp-input {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}

.mrp-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .mrp-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mrp-directory-grid {
        grid-template-columns: 1fr;
    }
}

.mrp-member-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding-bottom: 20px;
}

.mrp-member-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mrp-member-card--detailed:hover {
    border-color: var(--mrp-primary, #7a1a2e);
}

.mrp-member-card--public:hover {
    border-color: var(--mrp-primary, #7a1a2e);
}

.mrp-member-card-banner {
    padding: 16px 16px 0 16px;
    height: 150px;
    overflow: hidden;
}

.mrp-member-banner-img {
    width: 100%;
    height: 160px;
    max-height: 160px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    padding: 8px;
}

.mrp-member-card-body {
    padding: 16px 20px 0 20px;
    flex-grow: 1;
}

.mrp-member-card--public .mrp-member-card-body {
    text-align: center;
    padding-bottom: 0;
}

.mrp-member-card--public .mrp-member-company {
    font-size: 16px;
    margin-bottom: 0;
}

.mrp-member-company {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: var(--mrp-text, #1a1a2e);
    font-weight: 600;
}

.mrp-member-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.mrp-member-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    font-size: 13px;
    color: #333;
}

.mrp-member-details-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mrp-member-details-list svg {
    color: var(--mrp-primary, #7a1a2e);
    flex-shrink: 0;
}

.mrp-member-details-list a {
    color: var(--mrp-text, #1a1a2e);
    text-decoration: none;
}

.mrp-member-card-footer {
    padding: 0 20px;
    margin-top: auto;
}

.mrp-btn-read-more {
    display: block;
    width: 100%;
    background-color: var(--mrp-primary, #7a1a2e);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    box-sizing: border-box;
}

.mrp-btn-read-more:hover {
    background-color: var(--mrp-hover, #5c1424);
    color: #fff;
}

.mrp-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.mrp-page-num {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #c3c4c7;
    color: var(--mrp-primary, #7a1a2e);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.mrp-page-num:hover {
    background: #f0f0f1;
}

.mrp-page-num-current {
    background: var(--mrp-primary, #7a1a2e);
    color: #fff;
    border-color: var(--mrp-primary, #7a1a2e);
}

.mrp-page-num-current:hover {
    background: var(--mrp-primary, #7a1a2e);
    color: #fff;
}

/* ==========================================================================
   Mobile Responsiveness & Refinements
   ========================================================================== */
@media (max-width: 768px) {

    .mrp-form-wrap,
    .mrp-account-wrap {
        padding: 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .mrp-field-wrap {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        width: 100%;
    }

    .mrp-label {
        display: block;
        margin-bottom: 8px;
        width: 100%;
    }

    .mrp-input,
    .mrp-textarea,
    .mrp-select {
        width: 100% !important;
        box-sizing: border-box;
    }

    .mrp-btn {
        width: 100%;
        display: block;
        text-align: center;
        box-sizing: border-box;
    }

    /* Fix logo preview alignment */
    .mrp-logo-upload-area {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .mrp-logo-preview {
        margin-bottom: 10px;
        align-self: flex-start;
    }

    .mrp-account-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .mrp-account-tab {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
        justify-content: center;
        padding: 10px;
        box-sizing: border-box;
    }

    .mrp-profile-table,
    .mrp-profile-table tbody,
    .mrp-profile-table tr,
    .mrp-profile-table th,
    .mrp-profile-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .mrp-profile-table tr {
        margin-bottom: 15px;
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 10px;
    }

    .mrp-profile-table td {
        padding: 5px 0;
    }

    .mrp-profile-table td strong {
        display: block;
        margin-bottom: 4px;
        color: var(--mrp-gray-800);
    }

    /* Account Header Fixes */
    .mrp-account-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
        position: relative;
        /* ensure absolute children are contained */
    }

    .mrp-account-header-info {
        text-align: center;
        width: 100%;
        margin-bottom: 15px;
    }

    .mrp-header-logout {
        position: static;
        width: auto;
        display: inline-flex;
        justify-content: center;
        padding: 10px 20px;
        border-radius: var(--mrp-radius);
        margin-left: 0;
    }
}