/* Profile Page Styles - Moview Theme */

/* Profile header */
.profile-header {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

/* Profile avatar */
.profile-avatar {
    background-color: var(--theme-accent-red) !important;
    font-size: 2rem !important;
}

/* Profile paper */
.profile-paper {
    background-color: var(--theme-bg-card) !important;
    border: 1px solid var(--theme-border) !important;
}

/* Profile button */
.profile-button {
    background-color: var(--theme-accent-red) !important;
    color: var(--theme-text-primary) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.profile-button:hover {
    background-color: var(--theme-accent-red-hover) !important;
    transform: scale(1.02) !important;
}

