/* LC Dashboard Styles */

.lc-dashboard-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    height: auto !important;
    overflow: visible !important;
}

/* Strip Enfold/Insha theme's entry-content top padding on the dashboard page.
   Without this, the theme injects ~30-40px of white/grey space above the Welcome header. */
body.lc-dashboard-page .entry-content,
body.lc-dashboard-page .post-entry,
body.lc-dashboard-page #av-content-full {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Dashboard View Styles */
.lc-dashboard-view {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: white;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    isolation: isolate;
    height: auto !important;
    overflow: visible !important;
}

/* Login View Styles */
.lc-login-view {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f7;
    padding: 40px 20px;
    margin: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    isolation: isolate;
}

.lc-dashboard-header {
    background: white;
    padding: 32px 40px;
    border-bottom: none;
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 0;
}

.lc-dashboard-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lc-dashboard-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.lc-dashboard-avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #f0f0f0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #2c5aa0;
}

.lc-dashboard-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.lc-dashboard-user-text h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
}

.lc-dashboard-user-text p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #86868b;
}

.lc-dashboard-btn-logout {
    background: transparent;
    color: #86868b !important;
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid #e5e5e7;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.lc-dashboard-btn-logout:hover {
    background: #f5f5f7;
    color: #1d1d1f !important;
    border-color: #d2d2d7;
    transform: none;
    box-shadow: none;
}

.lc-dashboard-container {
    display: flex;
    gap: 0;
    background: #fbfbfd;
    height: auto !important;
    overflow: visible !important;
}

/* Sidebar Transitions and Collapsible Logic */
.lc-dashboard-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: white;
    border-right: 1px solid #e5e5e7;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: visible !important;
    height: auto !important;
}

/* Sidebar for theme design alignment */
.lc-dashboard-sidebar.collapsed {
    width: 70px;
    padding: 20px 8px;
    border-right: 1px solid #e5e5e7;
}

.lc-dashboard-sidebar.collapsed .lc-dashboard-nav-item span:not(.lc-dashboard-icon) {
    display: none;
}

.lc-dashboard-sidebar.collapsed .lc-dashboard-nav-item {
    justify-content: center;
    padding: 10px 0;
    gap: 0;
}

.lc-dashboard-collapse-toggle {
    margin-top: auto;
    border-top: 1px solid #e5e5e7;
    padding-top: 16px;
}

.lc-dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 0;
}

.lc-dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #1d1d1f;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.lc-dashboard-nav-item:hover {
    background: #f5f5f7;
    color: #0071e3;
}

.lc-dashboard-nav-item.active {
    background: #f5f5f7;
    color: #0071e3;
    box-shadow: inset 4px 0 0 #0071e3;
    border-radius: 0 8px 8px 0;
    margin-left: -16px;
    padding-left: 28px;
}

/* Typography and Header Standardization */
.lc-dashboard-main h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.lc-dashboard-intro {
    font-size: 15px;
    color: #86868b;
    background: transparent;
    border-left: none;
    padding: 0;
    margin-bottom: 32px;
}

.lc-dashboard-item {
    background: white;
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.lc-dashboard-item:hover {
    border-color: #d2d2d7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lc-dashboard-item-content {
    min-width: 0;
}

.lc-dashboard-item-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    line-height: 1.4;
}

.lc-dashboard-nav-item .lc-dashboard-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.8;
}

.lc-dashboard-nav-item .lc-dashboard-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Main Content Area Refinement */
.lc-dashboard-main {
    flex: 1;
    background: #fbfbfd;
    padding: 40px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: auto !important;
    overflow: visible !important;
}

.lc-dashboard-section {
    flex: 1;
    display: none;
    flex-direction: column;
}

.lc-dashboard-section.active {
    display: flex;
}

/* Global Access Status Widget */
.lc-dashboard-global-access-widget {
    margin-bottom: 32px;
}

.lc-dashboard-global-access-widget .ep-global-access-status-widget {
    width: 100% !important;
    min-width: unset !important;
    box-sizing: border-box;
}

.lc-dashboard-global-access-widget .ep-global-access-btn-primary:hover {
    background-color: #3b5de7 !important;
}

.lc-dashboard-global-access-widget .ep-global-access-btn-secondary:hover {
    background-color: #4a6cf7 !important;
    color: #fff !important;
}

@media (max-width: 480px) {
    .lc-dashboard-global-access-widget .ep-global-access-cta-buttons {
        flex-direction: column !important;
    }
    .lc-dashboard-global-access-widget .ep-global-access-btn-primary,
    .lc-dashboard-global-access-widget .ep-global-access-btn-secondary {
        width: 100% !important;
        text-align: center !important;
    }
}

/* Refined Stat Cards with Circular Icons */
.lc-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.lc-dashboard-stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #e5e5e7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #d2d2d7;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    color: #0071e3;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-content h3 {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #86868b;
    font-weight: 600;
}

.stat-number {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    font-variant-numeric: tabular-nums;
}

/* List Styles */
.lc-dashboard-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-dashboard-item {
    background: white;
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lc-dashboard-item-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #86868b;
    margin-top: 4px;
    flex-wrap: wrap;
}

/* Long file names (e.g. "065_a_guide_to_teaching_the_core_of_photography…")
   are unbroken underscore strings; without breaking them the span sets a huge
   min-content width that pushes the whole card past the viewport on mobile —
   clipping both the file name and the card title. min-width:0 lets the flex
   item shrink and overflow-wrap:anywhere breaks the long token. */
.lc-dashboard-item-meta span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lc-dashboard-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed, .status-active {
    background: #e3f2fd;
    color: #1976d2;
}

.status-pending {
    background: #fff3e0;
    color: #f57c00;
}

.lc-dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #0071e3;
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.lc-dashboard-btn:hover {
    background: #0077ed;
    transform: translateY(-1px);
}

.lc-dashboard-btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.lc-dashboard-empty {
    padding: 40px;
    text-align: center;
    background: #f5f5f7;
    border-radius: 12px;
    color: #86868b;
}

.lc-dashboard-pagination {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.lc-dashboard-pagination .page-info {
    font-size: 14px;
    color: #86868b;
}

/* User Profile Section */
.lc-dashboard-user-profile {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e5e7;
}

.lc-dashboard-user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #86868b;
}

.lc-dashboard-user-details h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.lc-dashboard-user-details p {
    margin: 4px 0 0 0;
    color: #86868b;
}

/* Form Styles */
.lc-dashboard-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e5e7;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0071e3;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Account Settings Overview */
.lc-dashboard-account-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.lc-dashboard-account-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e5e7;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-dashboard-account-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.lc-dashboard-account-item p {
    margin: 0;
    color: #86868b;
    font-size: 14px;
    line-height: 1.5;
}

.lc-dashboard-account-subsection {
    display: none;
}

.lc-dashboard-account-subsection.active {
    display: block;
}

.lc-dashboard-back-link {
    display: inline-block;
    color: #0071e3;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
}

.lc-dashboard-back-link:hover {
    text-decoration: underline;
}

/* Avatar Management Section */
.lc-dashboard-avatar-section {
    margin-bottom: 32px;
}

.lc-dashboard-avatar-description {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 20px;
}

.lc-dashboard-avatar-preview {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.avatar-display {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f7;
    border: 4px solid #fff;
    box-shadow: 0 0 0 1px #e5e5e7;
    flex-shrink: 0;
}

.avatar-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload-form {
    flex: 1;
    max-width: 400px;
}

.lc-dashboard-btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.file-info {
    font-size: 12px;
    color: #86868b;
    margin-top: 4px;
}

.lc-dashboard-divider {
    height: 1px;
    background: #e5e5e7;
    margin: 32px 0;
}

/* Status Colors for Orders */
.lc-dashboard-status.status-processing { background: #e3f2fd; color: #1976d2; }
.lc-dashboard-status.status-on-hold { background: #fff3e0; color: #f57c00; }
.lc-dashboard-status.status-cancelled, 
.lc-dashboard-status.status-failed { background: #fee2e2; color: #dc2626; }
.lc-dashboard-status.status-refunded { background: #f3f4f6; color: #4b5563; }

/* Dashboard Card Specifics */
.lc-dashboard-stat-card .stat-icon svg {
    color: inherit;
}

/* Mobile sidebar backdrop overlay */
.lc-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    -webkit-tap-highlight-color: transparent;
}
.lc-sidebar-backdrop.active {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .lc-dashboard-container {
        flex-direction: row;
    }
    
    .lc-dashboard-sidebar {
        width: 70px; /* Collapse by default on medium screens too */
        padding: 24px 8px;
    }

    .lc-dashboard-sidebar .lc-dashboard-nav-item span:not(.lc-dashboard-icon) {
        display: none;
    }

    .lc-dashboard-sidebar .lc-dashboard-nav-item {
        justify-content: center;
        padding: 10px 0;
        gap: 0;
    }

    .lc-dashboard-sidebar.expanded {
        width: 260px;
        padding: 24px 16px;
    }

    .lc-dashboard-sidebar.expanded .lc-dashboard-nav-item span:not(.lc-dashboard-icon) {
        display: inline;
    }

    .lc-dashboard-sidebar.expanded .lc-dashboard-nav-item {
        justify-content: flex-start;
        padding: 10px 12px;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .lc-dashboard-header {
        padding: 20px 16px;
    }

    .lc-dashboard-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .lc-dashboard-header-actions {
        width: 100%;
    }
    
    .lc-dashboard-btn-logout {
        width: 100%;
        text-align: center;
    }
    
    .lc-dashboard-avatar-preview {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .avatar-upload-form {
        width: 100%;
        max-width: 100%;
    }
    
    .lc-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lc-dashboard-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .lc-dashboard-item-actions {
        width: 100%;
        margin-top: 10px;
    }

    /* Container: relative so the fixed overlay backdrop works correctly */
    .lc-dashboard-container {
        flex-direction: row;
        position: relative;
        overflow-x: hidden;
    }

    /* Collapsed sidebar: narrow icon strip, stays in the normal flex flow.
       Must also override .lc-dashboard-sidebar.collapsed (70px desktop) — higher
       specificity rule appears later in this file so mobile wins. */
    .lc-dashboard-sidebar,
    .lc-dashboard-sidebar.collapsed {
        width: 60px;
        flex-shrink: 0;
        padding: 20px 4px;
        border-right: 1px solid #e5e5e7;
    }

    /* Expanded sidebar: fixed overlay — doesn't push main content off-screen */
    .lc-dashboard-sidebar.expanded {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 240px;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px 16px;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
    }

    /* Main content: must not overflow the remaining flex space */
    .lc-dashboard-main {
        flex: 1;
        min-width: 0;
        overflow-x: hidden;
        padding: 20px 16px 20px 21px;
    }

    /* Account overview grid: minmax(300px) overflows on narrow phones — force 1 column */
    .lc-dashboard-account-overview {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Collapsed sidebar active item: the desktop negative-margin trick clips on 60px.
       Replace with a simple centered rounded highlight + left border. */
    .lc-dashboard-sidebar:not(.expanded) .lc-dashboard-nav-item.active {
        margin-left: 0;
        padding-left: 0;
        border-radius: 8px;
        justify-content: center;
        box-shadow: none;
        border-left: 3px solid #0071e3;
        background: #eff4ff;
    }
}

@media (max-width: 480px) {
    .lc-dashboard-wrapper {
        padding: 0;
    }

    .lc-dashboard-header {
        padding: 16px 12px;
    }

    .lc-dashboard-main {
        padding: 15px;
    }
    
    .lc-dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .lc-dashboard-section h2 {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
}

/* Mobile Pagination */
@media (max-width: 480px) {
    .lc-dashboard-pagination {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .lc-dashboard-pagination .lc-dashboard-btn {
        flex: 1;
        min-width: 100px;
    }
    
    .lc-dashboard-pagination .page-info {
        width: 100%;
        text-align: center;
        order: -1;
        margin-bottom: 5px;
    }
}

/* Stat Icon Backgrounds - Refined with Gradients */
.lc-dashboard-stat-card:nth-child(1) .stat-icon { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); color: #f57c00; }
.lc-dashboard-stat-card:nth-child(2) .stat-icon { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); color: #1976d2; }
.lc-dashboard-stat-card:nth-child(3) .stat-icon { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); color: #388e3c; }
.lc-dashboard-stat-card:nth-child(4) .stat-icon { background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); color: #7b1fa2; }

/* Login Form Styles - Minimalist Apple Style */

.lc-dashboard-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.lc-dashboard-login-box {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e5e7;
    width: 100%;
    max-width: 340px;
    padding: 40px 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.lc-dashboard-login-header {
    text-align: center;
    margin-bottom: 20px;
}

.lc-dashboard-login-header h1 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.lc-dashboard-login-header p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.lc-dashboard-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-dashboard-form-group {
    display: flex;
    flex-direction: column;
}

.lc-dashboard-form-group label {
    font-size: 12px;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
}

.lc-dashboard-form-input {
    padding: 8px 10px;
    border: 1px solid #d2d2d7;
    border-radius: 4px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #000;
    transition: border-color 0.15s ease;
}

.lc-dashboard-form-input:focus {
    outline: none;
    border-color: #0071e3;
}

.lc-dashboard-form-input::placeholder {
    color: #999;
}

.lc-dashboard-form-remember {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.lc-dashboard-form-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #0071e3;
}

.lc-dashboard-form-remember label {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #555;
    cursor: pointer;
}

.lc-dashboard-login-button {
    padding: 8px 16px;
    background: #0071e3;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
    margin-top: 4px;
}

.lc-dashboard-login-button:hover {
    background: #0077ed;
}

.lc-dashboard-login-button:active {
    background: #005bc7;
}

.lc-dashboard-login-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e7;
}

.lc-dashboard-login-link {
    font-size: 12px;
    color: #0071e3;
    text-decoration: none;
    transition: color 0.15s ease;
}

.lc-dashboard-login-link:hover {
    color: #0077ed;
}

/* Forgot Password Instructions */

.lc-dashboard-forgot-instructions {
    background: #f5f7fa;
    border-left: 3px solid #0071e3;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.lc-dashboard-forgot-instructions p {
    margin: 0;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

/* Password Reset Form Styles */

.lc-dashboard-reset-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-dashboard-reset-error {
    margin-top: 10px;
}

.lc-dashboard-error-help {
    margin-top: 16px;
    padding: 12px;
    background: #fff3cd;
    border-radius: 4px;
    font-size: 13px;
    color: #665d0d;
    line-height: 1.5;
}

/* Consolidated message styles - shared across all forms */
#lc-reset-message,
#lc-forgot-request-message,
#lc-login-message,
#password-update-message,
#profile-update-message,
#email-update-message,
#avatar-upload-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.lc-dashboard-message.success,
#lc-reset-message.success,
#lc-forgot-request-message.success,
#lc-login-message.success,
#password-update-message.success,
#profile-update-message.success,
#email-update-message.success,
#avatar-upload-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.lc-dashboard-message.error,
#lc-reset-message.error,
#lc-forgot-request-message.error,
#lc-login-message.error,
#password-update-message.error,
#profile-update-message.error,
#email-update-message.error,
#avatar-upload-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.lc-dashboard-message.info,
#lc-reset-message.info,
#lc-forgot-request-message.info,
#lc-login-message.info,
#password-update-message.info,
#profile-update-message.info,
#email-update-message.info,
#avatar-upload-message.info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}
