@import url('/css/modal-dialog.css');
@import url('/css/buttons.css');
@import url('/css/form-section.css');
/*
====================================================
Legal Document Heading Overrides
Bootstrap Reboot resets all heading margins to 0.
These rules restore spacing for rendered Markdown content
inside .legal-document containers (LegalDocumentViewer, LegalDocumentModal).
Specificity (0,1,1) beats Bootstrap Reboot's (0,0,1).
====================================================
*/
.legal-document h1,
.legal-document-content h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--color-primary-500);
}

.legal-document h2,
.legal-document-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-input);
}

.legal-document h3,
.legal-document-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-label);
}

.legal-document h4,
.legal-document-content h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

/*
====================================================
Global Layout & Utility Classes
====================================================
*/

/* Section Containers */
.section-container {
    background: var(--color-surface-0);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.section-header {
    background: var(--color-section-header-bg);
    color: var(--color-primary-500);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header .bi {
    color: var(--color-primary-500);
}

.section-header h2, .section-header h3, .section-header h4 {
    margin: 0;
    color: var(--color-primary-500);
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.page-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.sections {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 768px;
    margin: 0 auto;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.error-container {
    text-align: center;
    padding: 3rem 1rem;
}

.error-container .error-icon {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.error-container h3 {
    color: #343a40;
    margin-bottom: 0.5rem;
}

.error-container p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}


/*
====================================================
Login, Redirect, and Auth Pages
====================================================
*/
.login-page, .redirect-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-surface-50) 0%, var(--color-surface-0) 100%);
    padding: 2rem 1rem;
}

/* Redirect container (used for auth-required pages) */
.redirect-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
}


/*
====================================================
Cards, Avatars, and Badges
====================================================
*/

/* Empty State Cards */
.empty-state-card {
    background: var(--color-surface-50);
    color: var(--color-text-muted);
    border: 1px dashed var(--color-border-dashed);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

/* Form Error States */
.form-control.is-invalid {
    border-color: var(--color-error-500);
    color: var(--color-error-500);
}

.form-control.is-invalid:focus {
    border-color: var(--color-error-500);
    box-shadow: 0 0 0 0.2rem rgba(224, 46, 46, 0.25);
}
.role-badge {
    color: var(--color-primary-500);
    background: var(--color-badge-bg);
    border: 1px solid var(--color-border-default);
    font-weight: 500;
    opacity: 0.85;
    border-radius: .5em;
    padding: 0.3em 0.4em;
    margin-right: 0.4em;
    font-size: 0.92em;
    display: inline-block;
    line-height: 1.6;
    vertical-align: middle;
}
.user-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4em 0.25em;
    margin-top: 0.25em;
}

/* Make user name more readable */
.user-name {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text-input);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .mvp-card-content {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .user-avatar, .team-avatar, .sponsor-avatar, .game-icon, .proposal-icon {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .game-icon, .proposal-icon {
        font-size: 1rem;
    }

    .sponsor-logo {
        width: 40px;
        height: 40px;
    }

    /* Player Profile Card - Center alignment on mobile */
    .player-profile-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .player-details {
        align-items: center;
        justify-content: center;
    }

    .player-name {
        justify-content: center;
    }

    .player-name h2 {
        text-align: center;
    }

    .player-info {
        justify-content: center;
    }

    .consent-status {
        display: flex;
        justify-content: center;
    }
}


/*
====================================================
Form Elements & Buttons
====================================================
*/
.form-group {
    margin-bottom: 1.5rem;
}

.form-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    min-height: 5.5rem;
    padding-bottom: 1.5rem;
}

.separator-label {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--color-text-header);
    background: var(--color-surface-0);
    padding: 1.25rem 3rem 1.5rem 3rem;
    border-radius: 1.5rem;
    z-index: 1;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.01);
    position: relative;
    line-height: 1.2;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-separator::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background-color: var(--bs-border-color, #dee2e6);
    z-index: 0;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

    .form-label.mvp-label {
        color: var(--color-text-label) !important;
        font-weight: 600 !important;
    }

.form-control {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-surface-50);
    border: 1px solid var(--color-border-default);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--color-text-input);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .form-control:focus {
        outline: none;
        border: 2px solid var(--color-primary-500);
        box-shadow: none;
    }

    .form-control::placeholder {
        color: var(--color-border-dashed);
        opacity: 1;
        font-style: italic;
    }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1em;
}

.form-check-input {
    margin: 0;
}

.form-check:not(.form-switch) > .form-check-input {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    min-width: 1.375rem;
    margin-top: 0.125rem;
    border: 1.5px solid var(--color-border-default, #6c757d);
    cursor: pointer;
}

.form-check-label {
    color: #212529 !important;
    flex: 1;
    font-weight: 500;
    line-height: 1.45;
    min-width: 0;
    cursor: pointer;
}

.form-check-label a {
    color: #0d6efd;
    text-decoration: underline;
}

.form-check-input:focus + .form-check-label {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

@media (max-width: 767.98px) {
    .form-check:not(.form-switch) {
        gap: 0.875rem;
    }

    .form-check:not(.form-switch) > .form-check-input {
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
    }
}

.form-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.text-muted {
    color: var(--bs-secondary, #6c757d) !important;
}


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

/* Vote Buttons - Red Fire accent */
.btn-vote {
    background-color: var(--color-accent-500);
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.15s ease;
    text-decoration: none;
    min-height: 44px;
}

.btn-vote:hover:not(:disabled) {
    background-color: var(--color-accent-700);
    color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(196, 63, 50, 0.25);
}
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.15s ease;
    text-decoration: none;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--color-accent-green);
    color: #fff;
    border: 1px solid white;
}

    .btn-primary:hover:not(:disabled) {
        background-color: var(--color-accent-green);
        border: 1px solid var(--color-primary-500);
        transition: all 0.15s ease;
    }

.btn-outline-primary {
    border: 1px solid var(--color-primary-500);
    color: var(--color-primary-500);
    background: transparent;
}

    .btn-outline-primary:hover:not(:disabled) {
        background-color: var(--color-primary-500);
        color: white;
    }

.btn-outline-secondary {
    border: 1px solid var(--color-secondary-500, #6c757d);
    color: var(--color-secondary-500, #6c757d);
    background: transparent;
}

    .btn-outline-secondary:hover:not(:disabled) {
        background-color: var(--color-secondary-500, #6c757d);
        color: white;
    }

.btn-secondary {
    background-color: var(--color-secondary-500, #6c757d);
    color: #fff;
    border: 1px solid white;
}

    .btn-secondary:hover:not(:disabled) {
        background-color: var(--color-secondary-700, #495057);
        border: 1px solid var(--color-secondary-700, #495057);
        color: #fff;
    }

.btn-outline-success {
    border: 1px solid #198754;
    color: #198754;
    background: transparent;
}

    .btn-outline-success:hover:not(:disabled) {
        background-color: #198754;
        color: white;
    }

.btn-outline-warning {
    border: 1px solid #fd7e14;
    color: #fd7e14;
    background: transparent;
}

    .btn-outline-warning:hover:not(:disabled) {
        background-color: #fd7e14;
        color: white;
    }

.btn-outline-danger {
    border: 1px solid #dc3545;
    color: #dc3545;
    background: transparent;
}

    .btn-outline-danger:hover:not(:disabled) {
        background-color: #dc3545;
        color: white;
    }

.btn-link {
    background: transparent;
    color: var(--color-primary-500);
    text-decoration: none;
    padding: 0.5rem;
    border: none;
}

    .btn-link:hover:not(:disabled) {
        text-decoration: underline;
        color: var(--color-primary-700);
    }

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    background-color: var(--color-primary-400);
    border: 1px solid white;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
}

/* .btn-touch — pairs with .btn-sm to keep desktop compact while scaling up
   font-based icons to thumb-friendly size on mobile.
   Targets .bi directly: no inherited-value conflict with .btn-sm font-size. */
@media (max-width: 767.98px) {
    .btn-touch .bi {
        font-size: 1.5rem;
    }
}

/*
====================================================
Dropdowns & Misc
====================================================
*/
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #16181b;
    }

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}


/*
====================================================
Grid & Responsive
====================================================
*/
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*
====================================================
Collapse Panel Header Button (Override)
====================================================
*/
.collapse-header .btn-outline-primary {
    border: none !important;
    box-shadow: none;
    background: transparent;
    color: var(--color-primary-500);
}

    .collapse-header .btn-outline-primary:hover,
    .collapse-header .btn-outline-primary:focus {
        border: none !important;
        box-shadow: none;
        background: rgba(29,185,84,0.08); /* subtle highlight on hover */
        color: var(--color-primary-700);
    }


/*
====================================================
Team Profile Card & Details
====================================================
*/
.team-profile-display {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.team-profile-display h4 {
    flex: 1 1 100%;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-header);
    letter-spacing: 0.01em;
}

.team-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2.5rem;
    align-items: flex-start;
    font-size: 1.05rem;
    color: var(--color-text-input);
    margin-top: 0.25rem;
}

.team-detail-row {
    display: flex;
    align-items: center;
    min-width: 160px;
    margin-bottom: 0.25rem;
    gap: 0.5rem;
}

.team-detail-label {
    font-weight: 600;
    color: var(--color-text-header);
    background: var(--color-surface-50);
    border-radius: 0.5rem 0 0 0.5rem;
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    min-width: 90px;
    text-align: right;
    font-size: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.21);
}

.team-detail-value {
    font-weight: 500;
    color: var(--color-text-input);
    background: var(--color-surface-0);
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    font-size: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.21);
}

@media (max-width: 768px) {
    .team-details {
        gap: 0.5rem 1rem;
        font-size: 0.98rem;
    }
    .team-detail-row {
        min-width: 120px;
    }
    .team-detail-label, .team-detail-value {
        font-size: 0.97rem;
        padding: 0.18rem 0.5rem 0.18rem 0.5rem;
    }
}

/*
====================================================
Chips
====================================================
*/

.success-chip,
.info-chip,
.warning-chip {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.success-chip {
    background: var(--bs-success-bg-subtle);
    color: var(--bs-success);
    border: 1px solid var(--bs-success-border-subtle);
}

.info-chip {
    background: var(--bs-info-bg-subtle);
    color: var(--bs-info);
    border: 1px solid var(--bs-info-border-subtle);
}

.warning-chip {
    background: var(--bs-warning-bg-subtle);
    color: var(--bs-warning);
    border: 1px solid var(--bs-warning-border-subtle);
}

/*
====================================================
Image Manager & Logo Gallery
====================================================
*/

.image-manager {
    width: 100%;
    max-width: 100%;
}

.image-upload-section {
    margin-bottom: 2rem;
}

.upload-area {
    position: relative;
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px dashed var(--color-border-default, #dee2e6);
    border-radius: 0.75rem;
    background: var(--color-surface-50, #f8f9fa);
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-text-muted, #6c757d);
}

.upload-label:hover:not(.uploading) {
    border-color: var(--color-primary-500, #123857);
    background: rgba(18, 56, 87, 0.05);
    color: var(--color-primary-500);
}

.upload-label.uploading {
    border-color: var(--color-primary-400, #1f4a6b);
    background: rgba(18, 56, 87, 0.1);
    cursor: not-allowed;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.upload-text strong {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.logo-gallery {
    margin-top: 2rem;
}

.gallery-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-header, #212529);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.logo-item {
    background: white;
    border: 1px solid var(--color-border-default, #dee2e6);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.logo-item.active {
    border-color: var(--color-primary-500, #123857);
    box-shadow: 0 0 0 2px rgba(18, 56, 87, 0.2);
}

.logo-preview {
    position: relative;
    width: 100%;
    height: 150px;
    background: var(--color-surface-50, #f8f9fa);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-muted, #6c757d);
    font-size: 0.875rem;
}

.logo-placeholder .bi {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.active-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--color-primary-500, #123857);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.status-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.status-badge.status-pending {
    background: #fef3cd;
    color: #664d03;
    border: 1px solid #ffecb5;
}

.status-badge.status-approved {
    background: #d1ecf1;
    color: #055160;
    border: 1px solid #b8daff;
}

.status-badge.status-active {
    background: #d1e7dd;
    color: #0a3622;
    border: 1px solid #badbcc;
}

.status-badge.status-rejected {
    background: #f8d7da;
    color: #58151c;
    border: 1px solid #f1aeb5;
}

.status-badge.status-archived {
    background: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

.status-badge.status-inactive {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

/* Game status styling */
.status-upcoming {
    color: var(--bs-warning);
    font-weight: 600;
}

.status-live {
    color: var(--bs-danger);
    font-weight: 700;
}

.status-completed {
    color: var(--bs-success);
    font-weight: 600;
}

.status-final {
    color: var(--bs-primary);
    font-weight: 700;
}

.logo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
    border-top: 1px solid var(--color-border-default, #dee2e6);
    background: var(--color-surface-50, #f8f9fa);
}

.logo-info {
    padding: 0.75rem;
    background: white;
    border-top: 1px solid var(--color-border-default, #dee2e6);
}

.logo-info small {
    line-height: 1.4;
}

.empty-gallery {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted, #6c757d);
}

.empty-gallery .bi {
    opacity: 0.5;
    margin-bottom: 1rem;
}

/* Status-based styling for logo items */
.logo-item.status-pending {
    border-left: 4px solid #ffc107;
}

.logo-item.status-approved {
    border-left: 4px solid #0dcaf0;
}

.logo-item.status-active {
    border-left: 4px solid #198754;
}

.logo-item.status-rejected {
    border-left: 4px solid #dc3545;
    opacity: 0.8;
}

.logo-item.status-archived {
    border-left: 4px solid #6c757d;
    opacity: 0.7;
}

.logo-item.status-inactive {
    border-left: 4px solid #6c757d;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .logo-actions .btn-sm span {
        display: none !important;
    }
    
    .upload-label {
        min-height: 100px;
    }
    
    .upload-content {
        padding: 0.75rem;
    }
    
    .upload-text strong {
        font-size: 1rem;
    }
}

/* Custom confirmation modal styling */
/* Status badges for simplified Active/Inactive workflow */
.status-badge.status-inactive {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.status-badge.status-active {
    background: #d1e7dd;
    color: #0a3622;
    border: 1px solid #badbcc;
}

/* Logo item styling for simplified statuses */
.logo-item.status-inactive {
    border-left: 4px solid #6c757d;
    opacity: 0.8;
}

.logo-item.status-active {
    border-left: 4px solid #198754;
}

/* Inline confirmation styling - MUCH CLEANER than modals! */
.inline-confirmation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    animation: slideIn 0.2s ease-out;
}

.confirmation-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #856404;
    white-space: nowrap;
}

/* Smooth slide-in animation for confirmations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Make confirmation buttons slightly smaller for better fit */
.inline-confirmation .btn {
    --bs-btn-padding-x: 0.375rem;
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-font-size: 0.75rem;
}

/* Ensure the actions container can handle the confirmation UI */
.logo-actions {
    min-height: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Mobile responsiveness for inline confirmations */
@media (max-width: 576px) {
    .inline-confirmation {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .confirmation-text {
        font-size: 0.75rem;
    }
    
    .inline-confirmation .btn {
        min-width: 2rem;
    }
}

/*
====================================================
Player Profile Card - GLOBAL OVERRIDE
Force column layout for player profile cards
====================================================
*/
/* This global override ensures player profile cards always display in column layout
   regardless of scoped CSS specificity issues */
.player-profile-card .mvp-card-content {
    display: block !important;
    text-align: -webkit-center;
}

.player-profile-card .mvp-card-media {
    display: block !important;
    margin: 0 auto 1.5rem auto !important;
    text-align: -webkit-center;
}

.player-profile-card .mvp-card-body {
    display: block !important;
    text-align: -webkit-center;
}

/* Accessibility — Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
