/* =====================================================
   PROFILE EDIT PAGE STYLES
   Glass morphism cards with community-themed accents.
   WCAG 2.1 AA Compliant
   ===================================================== */

/* ========== Page Layout ========== */

.profile-edit-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

/* ========== Auth Guard ========== */

.profile-edit-auth-guard {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.profile-edit-auth-message {
    text-align: center;
    color: var(--text-secondary, #4B5563);
    font-size: 1.125rem;
}

.profile-edit-auth-message i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.5;
}

/* ========== Loading Skeleton ========== */

.profile-edit-loading {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.profile-edit-skeleton-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.skeleton-cover {
    height: 200px;
    background: var(--glass-white);
}

.skeleton-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--glass-white);
    border: 4px solid #fff;
    position: absolute;
    bottom: -40px;
    left: 2rem;
}

.profile-edit-skeleton-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-line {
    height: 1rem;
    border-radius: 6px;
    background: var(--glass-white);
}

.skeleton-pulse {
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ========== Alerts ========== */

.profile-edit-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.profile-edit-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.profile-edit-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.profile-edit-alert-dismiss {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: inherit;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.profile-edit-alert-dismiss:hover,
.profile-edit-alert-dismiss:focus-visible {
    opacity: 1;
}

/* ========== Dirty Banner ========== */

.profile-edit-dirty-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(var(--community-primary-rgb, 59, 130, 246), 0.08), rgba(var(--community-primary-rgb, 59, 130, 246), 0.04));
    border: 1px solid rgba(var(--community-primary-rgb, 59, 130, 246), 0.2);
    color: var(--text-secondary, #4B5563);
    font-size: 0.875rem;
}

.profile-edit-dirty-banner i {
    color: var(--community-primary, #3b82f6);
    font-size: 0.8125rem;
}

/* ========== Hero Section ========== */

.profile-edit-hero {
    position: relative;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0px 4px 20px 0px rgba(209, 209, 209, 0.15);
}

/* Cover Image */

.profile-edit-cover {
    position: relative;
    height: 200px;
    cursor: pointer;
    overflow: hidden;
    transition: filter 0.2s;
}

.profile-edit-cover:hover,
.profile-edit-cover:focus-visible {
    filter: brightness(0.9);
}

.profile-edit-cover:focus-visible {
    outline: 3px solid var(--community-primary, #3b82f6);
    outline-offset: -3px;
}

.profile-edit-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-edit-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(var(--community-primary-rgb, 59, 130, 246), 0.15) 0%,
        rgba(var(--community-primary-rgb, 59, 130, 246), 0.05) 100%);
}

.profile-edit-cover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.25s;
}

.profile-edit-cover:hover .profile-edit-cover-overlay,
.profile-edit-cover:focus-visible .profile-edit-cover-overlay {
    opacity: 1;
}

.profile-edit-cover-overlay i {
    font-size: 1.25rem;
}

/* Avatar */

.profile-edit-avatar-wrapper {
    padding: 0 2rem;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.profile-edit-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.2s;
}

.profile-edit-avatar:hover,
.profile-edit-avatar:focus-visible {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.profile-edit-avatar:focus-visible {
    outline: 3px solid var(--community-primary, #3b82f6);
    outline-offset: 2px;
}

.profile-edit-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-edit-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        var(--community-primary, #3b82f6),
        var(--community-accent, #6366f1));
    color: #fff;
}

.profile-edit-avatar-initials {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.profile-edit-avatar-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.25s;
    border-radius: 50%;
}

.profile-edit-avatar:hover .profile-edit-avatar-overlay,
.profile-edit-avatar:focus-visible .profile-edit-avatar-overlay {
    opacity: 1;
}

/* Hero Info */

.profile-edit-hero-info {
    padding: 1rem 2rem 1.25rem;
}

.profile-edit-hero-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    margin: 0;
    line-height: 1.3;
}

.profile-edit-hero-title {
    font-size: 0.9375rem;
    color: var(--text-secondary, #4B5563);
    margin: 0.25rem 0 0;
    line-height: 1.4;
}

.profile-edit-hero-separator {
    opacity: 0.5;
}

/* Hero Save Button */

.profile-edit-hero-save {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    min-height: 44px;
    min-width: 44px;
    border: none;
    border-radius: 10px;
    background: var(--community-primary, #3b82f6);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.profile-edit-hero-save:hover:not(:disabled) {
    background: var(--community-accent, #2563eb);
    transform: translateY(-1px);
}

.profile-edit-hero-save:focus-visible {
    outline: 3px solid var(--community-primary, #3b82f6);
    outline-offset: 2px;
}

.profile-edit-hero-save:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== Glass Card Sections ========== */

.profile-edit-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0px 4px 20px 0px rgba(209, 209, 209, 0.15);
}

.profile-edit-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    border-radius: 16px 16px 0 0;
    background: #fff;
}

.profile-edit-card-header i {
    color: var(--community-primary, #3b82f6);
    font-size: 1.125rem;
}

.profile-edit-card-header h2 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
}

.profile-edit-card-body {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ========== Form Grid ========== */

.profile-edit-grid {
    display: grid;
    gap: 1rem;
}

.profile-edit-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.profile-edit-grid-4 {
    grid-template-columns: 120px 1fr 1fr 1fr;
}

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

.profile-edit-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.profile-edit-field label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary, #4B5563);
    letter-spacing: 0.01em;
}

.profile-edit-required {
    color: #ef4444;
}

.profile-edit-char-count {
    margin-left: auto;
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-secondary, #4B5563);
    opacity: 0.7;
}

.profile-edit-field input[type="text"],
.profile-edit-field select,
.profile-edit-field textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    min-height: 44px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-primary, #1f2937);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    line-height: 1.4;
    font-family: inherit;
}

.profile-edit-field input[type="text"]:focus,
.profile-edit-field select:focus,
.profile-edit-field textarea:focus {
    outline: none;
    border-color: var(--community-primary, #3b82f6);
    box-shadow: 0 0 0 3px rgba(var(--community-primary-rgb, 59, 130, 246), 0.15);
}

.profile-edit-field input[type="text"]::placeholder,
.profile-edit-field textarea::placeholder {
    color: var(--text-secondary, #4B5563);
    opacity: 0.5;
}

.profile-edit-field textarea {
    resize: vertical;
    min-height: 120px;
}

.profile-edit-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* ========== Chips Input Component ========== */

.chips-input-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    min-height: 44px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: text;
}

.chips-input-container:focus-within {
    border-color: var(--community-primary, #3b82f6);
    box-shadow: 0 0 0 3px rgba(var(--community-primary-rgb, 59, 130, 246), 0.15);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.375rem 0.25rem 0.75rem;
    background: linear-gradient(135deg,
        rgba(var(--community-primary-rgb, 59, 130, 246), 0.08),
        rgba(var(--community-primary-rgb, 59, 130, 246), 0.04));
    border: 1px solid rgba(var(--community-primary-rgb, 59, 130, 246), 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary, #1f2937);
    line-height: 1.3;
    white-space: nowrap;
    animation: chip-appear 0.15s ease-out;
}

@keyframes chip-appear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.chip-text {
    user-select: none;
}

.chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(var(--community-primary-rgb, 59, 130, 246), 0.12);
    color: var(--community-primary, #3b82f6);
    font-size: 0.5625rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.chip-remove:hover,
.chip-remove:focus-visible {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.chip-remove:focus-visible {
    outline: 2px solid var(--community-primary, #3b82f6);
    outline-offset: 1px;
}

.chips-input-wrapper {
    flex: 1;
    min-width: 120px;
    position: relative;
}

.chips-text-input {
    width: 100%;
    padding: 0.25rem 0;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    color: var(--text-primary, #1f2937);
    background: transparent;
    line-height: 1.4;
    font-family: inherit;
}

.chips-text-input::placeholder {
    color: var(--text-secondary, #4B5563);
    opacity: 0.5;
}

.chips-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: -0.75rem;
    right: -0.75rem;
    z-index: 100;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    animation: dropdown-appear 0.15s ease-out;
}

@keyframes dropdown-appear {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.chips-dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    min-height: 36px;
    border: none;
    border-radius: 6px;
    background: transparent;
    text-align: left;
    font-size: 0.875rem;
    color: var(--text-primary, #1f2937);
    cursor: pointer;
    transition: background 0.1s;
    font-family: inherit;
}

.chips-dropdown-item:hover,
.chips-dropdown-item.highlighted {
    background: rgba(var(--community-primary-rgb, 59, 130, 246), 0.08);
    color: var(--community-primary, #3b82f6);
}

.chips-dropdown-item:focus-visible {
    outline: 2px solid var(--community-primary, #3b82f6);
    outline-offset: -2px;
}

/* ========== Company Autocomplete Component ========== */

.company-autocomplete-container {
    position: relative;
}

.company-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.company-text-input {
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
    min-height: 44px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-primary, #1f2937);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    line-height: 1.4;
    font-family: inherit;
}

.company-text-input:focus {
    outline: none;
    border-color: var(--community-primary, #3b82f6);
    box-shadow: 0 0 0 3px rgba(var(--community-primary-rgb, 59, 130, 246), 0.15);
}

.company-text-input::placeholder {
    color: var(--text-secondary, #4B5563);
    opacity: 0.5;
}

.company-clear-btn {
    position: absolute;
    right: 0.375rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--glass-white, rgba(0, 0, 0, 0.05));
    color: var(--text-secondary, #4B5563);
    font-size: 0.625rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.company-clear-btn:hover,
.company-clear-btn:focus-visible {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.company-clear-btn:focus-visible {
    outline: 2px solid var(--community-primary, #3b82f6);
    outline-offset: 1px;
}

.company-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    animation: dropdown-appear 0.15s ease-out;
}

.company-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    min-height: 40px;
    border: none;
    border-radius: 6px;
    background: transparent;
    text-align: left;
    font-size: 0.875rem;
    color: var(--text-primary, #1f2937);
    cursor: pointer;
    transition: background 0.1s;
    font-family: inherit;
}

.company-result-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-gray-light, #f9fafb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-logo-initial {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--community-primary, #3b82f6);
    text-transform: uppercase;
    line-height: 1;
}

.company-result-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0.0625rem;
}

.company-result-name {
    font-size: 0.875rem;
    color: var(--text-primary, #1f2937);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.company-result-country {
    font-size: 0.6875rem;
    color: var(--text-secondary, #4B5563);
    line-height: 1.2;
}

.company-dropdown-item:hover,
.company-dropdown-item.highlighted {
    background: rgba(var(--community-primary-rgb, 59, 130, 246), 0.08);
    color: var(--community-primary, #3b82f6);
}

.company-dropdown-item:focus-visible {
    outline: 2px solid var(--community-primary, #3b82f6);
    outline-offset: -2px;
}

/* ========== Bottom Save ========== */

.profile-edit-bottom-actions {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

.profile-edit-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2.5rem;
    min-height: 48px;
    min-width: 44px;
    border: none;
    border-radius: 12px;
    background: var(--community-primary, #3b82f6);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(var(--community-primary-rgb, 59, 130, 246), 0.25);
}

.profile-edit-save-btn:hover:not(:disabled) {
    background: var(--community-accent, #2563eb);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(var(--community-primary-rgb, 59, 130, 246), 0.35);
}

.profile-edit-save-btn:focus-visible {
    outline: 3px solid var(--community-primary, #3b82f6);
    outline-offset: 2px;
}

.profile-edit-save-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== Spinner ========== */

.profile-edit-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: profile-edit-spin 0.6s linear infinite;
}

@keyframes profile-edit-spin {
    to { transform: rotate(360deg); }
}

/* ========== Image Modal ========== */

.profile-edit-image-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.profile-edit-image-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.profile-edit-image-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.profile-edit-image-modal-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
}

.profile-edit-image-modal-close {
    background: none;
    border: none;
    padding: 0.25rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-secondary, #4B5563);
    cursor: pointer;
    transition: background 0.15s;
}

.profile-edit-image-modal-close:hover,
.profile-edit-image-modal-close:focus-visible {
    background: var(--glass-white);
}

.profile-edit-image-modal-close:focus-visible {
    outline: 3px solid var(--community-primary, #3b82f6);
    outline-offset: 2px;
}

.profile-edit-image-modal-body {
    padding: 1.5rem;
}

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

@media (max-width: 768px) {
    .profile-edit-page {
        gap: 1rem;
    }

    .profile-edit-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .profile-edit-grid-2 {
        grid-template-columns: 1fr;
    }

    .profile-edit-card-header,
    .profile-edit-card-body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .profile-edit-hero-info {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .profile-edit-avatar-wrapper {
        padding: 0 1.25rem;
    }

    .profile-edit-cover {
        height: 150px;
    }

    .profile-edit-avatar {
        width: 100px;
        height: 100px;
    }

    .profile-edit-avatar-wrapper {
        margin-top: -50px;
    }

    .profile-edit-hero-name {
        font-size: 1.25rem;
    }

    .profile-edit-hero-save {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .profile-edit-grid-4 {
        grid-template-columns: 1fr;
    }

    .profile-edit-card-header,
    .profile-edit-card-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .profile-edit-save-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== Reduced Motion ========== */

@media (prefers-reduced-motion: reduce) {
    .profile-edit-cover-overlay,
    .profile-edit-avatar-overlay,
    .profile-edit-hero-save,
    .profile-edit-save-btn {
        transition: none;
    }

    .skeleton-pulse {
        animation: none;
        opacity: 0.6;
    }

    .profile-edit-spinner {
        animation-duration: 1.5s;
    }

    .chip {
        animation: none;
    }

    .chips-dropdown,
    .company-dropdown {
        animation: none;
    }
}
