/* ============================================
   GLOBAL VARIABLES
   ============================================ */

:root {
    --nav-text-color: #2E2D2C;
    --nav-active-color: #0606EF;
    --nav-background: #fbf8f5;
}

/* ============================================
   APP HEADER WITH ROLE SWITCHER
   ============================================ */

.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(251, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46, 45, 44, 0.1);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.app-header__content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Navigation Links */
.app-header__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.app-header__nav::-webkit-scrollbar {
    display: none;
}

.app-header__nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2E2D2C;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cursor-pointer {
    cursor: pointer;
}

.span-full {
    grid-column: 1 / -1;
}

.app-header__nav-link:hover {
    background: rgba(6, 6, 239, 0.05);
}

.app-header__nav-link.active {
    background: #0606EF;
    color: white;
}

.app-header__nav-icon {
    font-size: 0.875rem;
}

.app-header__nav-label {
    /* Always visible on desktop */
}

@media (max-width: 900px) {
    .app-header__content {
        gap: 1rem;
    }

    .app-header__nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    .app-header__nav-label {
        display: none;
    }

    .app-header__user-button {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
}

.app-header__logo {
    font-family: 'GT Super Display', 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E2D2C;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-header__logo:hover {
    color: #0606EF;
    transition: color 0.2s ease;
}

.app-header__user {
    position: relative;
}

.app-header__user-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(46, 45, 44, 0.1);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #2E2D2C;
}

.app-header__user-button:hover {
    background: rgba(6, 6, 239, 0.05);
    border-color: rgba(6, 6, 239, 0.2);
}

.app-header__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0606EF 0%, #4a4aef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.app-header__user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.app-header__user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E2D2C;
    line-height: 1;
}

.app-header__role-label {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
    line-height: 1;
}

.app-header__role-name {
    font-weight: 600;
    color: #2E2D2C;
}

.app-header__dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
    margin-left: 0.25rem;
}

.app-header__user-button[aria-expanded="true"] .app-header__dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.app-header__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 240px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: white;
    border: 1px solid rgba(46, 45, 44, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(46, 45, 44, 0.12);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.app-header__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.app-header__dropdown-header {
    padding: 1rem 1rem 0.5rem;
    border-bottom: 1px solid rgba(46, 45, 44, 0.1);
    margin-bottom: 0.5rem;
}

.app-header__dropdown-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(46, 45, 44, 0.6);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.app-header__dropdown-subtitle {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.7);
}

.app-header__role-option,
.app-header__user-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.app-header__role-option:last-child {
    margin-bottom: 0;
}

.app-header__role-option:hover {
    background: rgba(6, 6, 239, 0.05);
}

.app-header__role-option.active {
    background: rgba(6, 6, 239, 0.1);
    font-weight: 600;
}

.app-header__role-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.app-header__role-text {
    flex: 1;
}

.app-header__role-title {
    font-weight: 500;
    color: #2E2D2C;
    margin-bottom: 0.125rem;
}

.app-header__role-option.active .app-header__role-title {
    font-weight: 600;
}

.app-header__role-description {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
}

.app-header__check {
    font-size: 0.875rem;
    color: #0606EF;
    opacity: 0;
}

.app-header__role-option.active .app-header__check {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .app-header__nav-label {
        display: none;
    }
    
    .app-header__nav-link {
        padding: 0.5rem;
        min-width: 40px;
        justify-content: center;
    }
    
    .app-header__nav {
        gap: 0.25rem;
    }
}

@media (max-width: 768px) {
    .app-header {
        height: 64px;
        padding: 0 1rem;
    }

    .app-header__logo {
        font-size: 1.25rem;
    }
    
    .app-header__logo span:last-child {
        display: none;
    }

    .app-header__role-label {
        display: none;
    }

    .app-header__user-button {
        padding: 0.5rem 0.75rem;
    }

    .app-header__dropdown {
        right: -1rem;
        min-width: calc(100vw - 2rem);
        max-width: 320px;
        max-height: calc(100vh - 96px);
    }
}

/* Adjust page content spacing */
body.with-app-header {
    padding-top: 80px;
}

body.with-app-drawer {
    padding-left: 260px;
}

body.with-app-drawer .app-page .max-w-7xl {
    max-width: 72rem;
}

.page-hero {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-hero p {
    max-width: 48rem;
    line-height: 1.5;
}

.winner-tile {
    position: relative;
    --card-bg: rgba(255, 243, 199, 0.35);
    --card-border-color: #F59E0B;
    --card-border-width: 2px;
}

.winner-tile__flag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.winner-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(6, 6, 239, 0.06);
    font-size: 0.75rem;
    font-weight: 600;
}

.results-kpi {
    display: grid;
    grid-template-rows: 48px 18px;
    align-content: center;
    align-items: center;
    justify-items: center;
    height: 100%;
    margin: 0 !important;
}

.results-kpi__value {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 700;
    font-size: 1.75rem;
}

.results-kpi__label {
    height: 18px;
    line-height: 1.2;
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
}

.results-kpi__value--big {
    font-size: 1.75rem;
}

.results-kpi__value--small {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .results-kpi {
        height: 100%;
    }

    .results-kpi__value {
        height: 36px;
        font-size: 1.5rem;
    }

    .results-kpi__value--small {
        font-size: 0.95rem;
    }
}

.results-kpi-grid {
    align-items: stretch;
    grid-auto-rows: minmax(0, 1fr);
}

@media (max-width: 768px) {
    body.with-app-header {
        padding-top: 64px;
    }
}

@media (max-width: 1024px) {
    body.with-app-drawer {
        padding-left: 0;
    }
}

/* ============================================
   PROCESS STEPPER
   ============================================ */

.process-stepper {
    background: white;
    border-radius: 28px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(46, 45, 44, 0.06);
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.process-stepper__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: min-content;
    gap: 1rem;
}

.process-stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 100px;
    position: relative;
}

.process-stepper__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    top: 20px;
    height: 2px;
    background: rgba(46, 45, 44, 0.1);
    z-index: 0;
}

.process-stepper__step.completed:not(:last-child)::after {
    background: #0606EF;
}

.process-stepper__circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    background: rgba(46, 45, 44, 0.05);
    color: rgba(46, 45, 44, 0.4);
    border: 2px solid rgba(46, 45, 44, 0.12);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process-stepper__circle svg,
.process-stepper__circle svg path,
.process-stepper__circle svg g,
.process-stepper__circle svg circle {
    width: 24px;
    height: 24px;
    fill: currentColor !important;
    stroke: currentColor !important;
    color: currentColor;
}

.process-stepper__step:not(.active) .process-stepper__circle svg,
.process-stepper__step:not(.active) .process-stepper__circle svg path {
    color: rgba(46, 45, 44, 0.4) !important;
    fill: rgba(46, 45, 44, 0.4) !important;
}

.process-stepper__step.active .process-stepper__circle {
    background: #0606EF;
    color: white;
    border-color: #0606EF;
    box-shadow: 0 4px 12px rgba(6, 6, 239, 0.3);
    transform: scale(1.06);
}

.process-stepper__step.completed .process-stepper__circle {
    background: #ffffff;
    color: #0606EF;
    border-color: #0606EF;
}

.process-stepper__step.completed .process-stepper__circle svg,
.process-stepper__step.completed .process-stepper__circle svg path {
    color: #0606EF !important;
    fill: #0606EF !important;
}

.process-stepper__step.active .process-stepper__circle svg {
    color: white;
}

.process-stepper__step.completed .process-stepper__circle svg {
    color: #0606EF;
}

.process-stepper__step:not(.active):not(.completed) .process-stepper__circle {
    border-color: rgba(46, 45, 44, 0.15);
    background: rgba(46, 45, 44, 0.03);
}

.process-stepper__label {
    text-align: center;
}

.process-stepper__title {
    font-family: 'GT America', 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(46, 45, 44, 0.6);
    margin-bottom: 0.125rem;
    transition: color 0.3s ease;
}

.process-stepper__step.active .process-stepper__title {
    color: #0606EF;
    font-size: 0.875rem;
}

.process-stepper__step.completed .process-stepper__title {
    color: #0606EF;
}

.process-stepper__description {
    display: none;
}

/* Mobile Responsive - Process Stepper */
@media (max-width: 1024px) {
    .process-stepper {
        padding: 1rem 1rem;
        overflow-x: visible;
        border-radius: 20px;
    }

    .process-stepper__container {
        justify-content: space-between;
        gap: 0.5rem;
    }

    .process-stepper__step {
        min-width: 0;
        flex: 1;
    }

    .process-stepper__description {
        display: none;
    }
}

@media (max-width: 640px) {
    .process-stepper {
        padding: 0.875rem 0.75rem;
        margin-bottom: 1.25rem;
        border-radius: 20px;
    }

    .process-stepper__container {
        gap: 0.25rem;
    }

    .process-stepper__circle {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .process-stepper__step.active .process-stepper__circle {
        transform: scale(1.05);
    }

    .process-stepper__step:not(:last-child)::after {
        left: calc(50% + 24px);
        right: calc(-50% + 24px);
        top: 20px;
        height: 2px;
    }

    .process-stepper__title {
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .process-stepper__step.active .process-stepper__title {
        font-size: 0.9375rem;
    }

    .process-stepper__label {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .bottom-nav__label {
        font-size: 0.65rem;
        letter-spacing: 0.02em;
    }

    .bottom-nav__item {
        padding: 4px 6px;
    }
}

/* ============================================
   STATUS CARD
   ============================================ */

.status-card {
    background: linear-gradient(135deg, rgba(6, 6, 239, 0.08) 0%, rgba(6, 6, 239, 0.03) 100%);
    border: 2px solid rgba(6, 6, 239, 0.1);
    border-radius: 28px;
    padding: 2rem 2.25rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0606EF 0%, rgba(6, 6, 239, 0.5) 100%);
}

.status-card--active {
    background: linear-gradient(135deg, rgba(6, 6, 239, 0.12) 0%, rgba(6, 6, 239, 0.05) 100%);
    border-color: rgba(6, 6, 239, 0.2);
}

.status-card--active::before {
    background: linear-gradient(90deg, #0606EF 0%, #4a4aef 100%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.status-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.status-card__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.status-card__content {
    flex: 1;
}

.status-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 6, 239, 0.1);
    color: #0606EF;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.status-card__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0606EF;
}

.status-card--active .status-card__badge-dot {
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.status-card__title {
    font-family: 'GT America', 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E2D2C;
    margin-bottom: 0.5rem;
}

.status-card__description {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.status-card__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: #0606EF;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

@media (hover: hover) {
    .status-card__cta:hover {
        background: #0505d0;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(6, 6, 239, 0.3);
    }
}

.status-card__cta:active {
    transform: translateY(0);
}

.status-card__cta--secondary {
    background: transparent;
    color: #0606EF;
    border: 2px solid #0606EF;
}

@media (hover: hover) {
    .status-card__cta--secondary:hover {
        background: rgba(6, 6, 239, 0.05);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(6, 6, 239, 0.15);
    }
}

.status-card__cta-icon {
    font-size: 1.25rem;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.dashboard-callout {
    margin-bottom: 2rem;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid rgba(46, 45, 44, 0.08);
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

@media (hover: hover) {
    .quick-action:hover {
        border-color: rgba(6, 6, 239, 0.2);
        background: rgba(6, 6, 239, 0.02);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(46, 45, 44, 0.08);
    }
}

.quick-action__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 6, 239, 0.1) 0%, rgba(6, 6, 239, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quick-action__content {
    flex: 1;
}

.quick-action__title {
    font-family: 'GT America', 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E2D2C;
    margin-bottom: 0.25rem;
}

.quick-action__description {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
    margin: 0;
}


/* ============================================
   INFO BANNER (No Voting Active)
   ============================================ */

.info-banner {
    background: #FBF8F5;
    border: 1px solid rgba(46, 45, 44, 0.06);
    border-radius: 28px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.info-banner__icon {
    font-size: 1.5rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.info-banner__content {
    flex: 1;
}

.info-banner__text {
    font-size: 0.9375rem;
    color: rgba(46, 45, 44, 0.8);
    margin: 0;
    line-height: 1.5;
}

.info-banner__subtext {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.5);
    margin: 0.25rem 0 0 0;
}

/* ============================================
   QUICK IDEA FORM
   ============================================ */

.quick-form {
    background: white;
    border: 2px solid rgba(46, 45, 44, 0.08);
    border-radius: 28px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.quick-form__header {
    margin-bottom: 2rem;
}

.quick-form__title {
    font-family: 'GT America', 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E2D2C;
    margin-bottom: 0.5rem;
}

.quick-form__subtitle {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
    margin: 0;
}

.quick-form__fields {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quick-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-form__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E2D2C;
}

.quick-form__label-required {
    color: #0606EF;
    margin-left: 0.25rem;
}

.quick-form__input,
.quick-form__select,
.quick-form__textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(46, 45, 44, 0.12);
    border-radius: 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: #2E2D2C;
    transition: all 0.2s ease;
    background: white;
}

.quick-form__input:focus,
.quick-form__select:focus,
.quick-form__textarea:focus {
    outline: none;
    border-color: #0606EF;
    box-shadow: 0 0 0 4px rgba(6, 6, 239, 0.1);
}

.quick-form__input::placeholder,
.quick-form__textarea::placeholder {
    color: rgba(46, 45, 44, 0.4);
}

.quick-form__textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'DM Sans', sans-serif;
}

.quick-form__input-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.quick-form__input-group .quick-form__input {
    flex: 1;
}

.quick-form__unit-select {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(46, 45, 44, 0.12);
    border-radius: 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #2E2D2C;
    background: white;
    cursor: pointer;
    min-width: 100px;
}

.quick-form__unit-select:focus {
    outline: none;
    border-color: #0606EF;
    box-shadow: 0 0 0 4px rgba(6, 6, 239, 0.1);
}

.quick-form__hint {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.5);
    margin: 0;
}

.quick-form__error {
    font-size: 0.875rem;
    color: #E53935;
    margin: 0;
    display: none;
}

.quick-form__error--visible {
    display: block;
}

.quick-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.quick-form__submit {
    padding: 1rem 2.5rem;
    background: #0606EF;
    color: white;
    border: none;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-form__submit:hover {
    background: #0505d0;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(6, 6, 239, 0.3);
}

.quick-form__submit:active {
    transform: translateY(0);
}

.quick-form__submit:disabled {
    background: rgba(46, 45, 44, 0.2);
    cursor: not-allowed;
    transform: none;
}

.quick-form__success {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(0, 200, 83, 0.1);
    color: #00C853;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s ease;
}

.quick-form__success--visible {
    opacity: 1;
    transform: translateY(0);
}

.quick-form__success-icon {
    font-size: 0.875rem;
}

/* Duplicate Warning */
.duplicate-warning {
    display: none;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 152, 0, 0.08);
    border: 2px solid rgba(255, 152, 0, 0.2);
    border-radius: 24px;
    margin-bottom: 1.5rem;
}

.duplicate-warning--visible {
    display: block;
}

.duplicate-warning__header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.duplicate-warning__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.duplicate-warning__content {
    flex: 1;
}

.duplicate-warning__title {
    font-weight: 600;
    color: #E65100;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.duplicate-warning__message {
    color: rgba(46, 45, 44, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.duplicate-warning__matches {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.duplicate-warning__match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.625rem 0.875rem;
    background: white;
    border-radius: 16px;
    font-size: 0.875rem;
}

.duplicate-warning__match-info {
    flex: 1;
    min-width: 0;
}

.duplicate-warning__match-title {
    font-weight: 600;
    color: #2E2D2C;
    margin-bottom: 0.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.duplicate-warning__match-meta {
    color: rgba(46, 45, 44, 0.6);
    font-size: 0.875rem;
}

.duplicate-warning__match-badge {
    padding: 0.25rem 0.625rem;
    background: rgba(255, 152, 0, 0.15);
    color: #E65100;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.duplicate-warning__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.duplicate-warning__action {
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'DM Sans', sans-serif;
}

.duplicate-warning__action--primary {
    background: #E65100;
    color: white;
}

.duplicate-warning__action--primary:hover {
    background: #D84315;
    transform: translateY(-1px);
}

.duplicate-warning__action--secondary {
    background: transparent;
    color: #E65100;
    border: 2px solid #E65100;
}

.duplicate-warning__action--secondary:hover {
    background: rgba(255, 152, 0, 0.1);
}

/* Strong duplicate (exact match) */
.duplicate-warning--strong {
    background: rgba(229, 57, 53, 0.08);
    border-color: rgba(229, 57, 53, 0.2);
}

.duplicate-warning--strong .duplicate-warning__title {
    color: #C62828;
}

.duplicate-warning--strong .duplicate-warning__match-badge {
    background: rgba(229, 57, 53, 0.15);
    color: #C62828;
}

.duplicate-warning--strong .duplicate-warning__action--primary {
    background: #C62828;
}

.duplicate-warning--strong .duplicate-warning__action--primary:hover {
    background: #B71C1C;
}

.duplicate-warning--strong .duplicate-warning__action--secondary {
    color: #C62828;
    border-color: #C62828;
}

@media (max-width: 768px) {
    .quick-form {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .quick-form__title {
        font-size: 1.25rem;
    }
    
    .quick-form__footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-form__submit {
        width: 100%;
        justify-content: center;
    }
    
    .quick-form__success {
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .status-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }
    
    .status-card__header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .status-card__icon {
        font-size: 2.25rem;
    }
    
    .status-card__title {
        font-size: 1.25rem;
    }
    
    .status-card__description {
        font-size: 0.9375rem;
    }
    
    .status-card__actions {
        flex-direction: column;
    }
    
    .status-card__cta {
        width: 100%;
        justify-content: center;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .quick-action {
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 20px;
    }

    .quick-action__icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 1.25rem;
    }

    .quick-action__title {
        font-size: 0.875rem;
    }

    .quick-action__description {
        font-size: 0.875rem;
    }

    .quick-action__arrow {
        font-size: 0.875rem;
    }
    
    .info-banner {
        padding: 1.25rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .info-banner__icon {
        font-size: 1.25rem;
    }
    
    .info-banner__text {
        font-size: 0.9375rem;
    }
    
    .info-banner__subtext {
        font-size: 0.875rem;
    }
}

/* ============================================
   IDEA SUBMISSION OVERLAY
   ============================================ */

.idea-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 700;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.idea-overlay--open {
    display: flex;
}

.idea-overlay__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 45, 44, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeInBackdrop 0.2s ease;
    cursor: pointer;
}

.idea-overlay__modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: calc(100vh - 4rem);
    background: white;
    border-radius: 28px;
    box-shadow: 0 24px 48px rgba(46, 45, 44, 0.2);
    overflow-y: auto;
    animation: slideUpModal 0.3s ease;
}

.idea-overlay__header {
    padding: 2rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(46, 45, 44, 0.1);
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
    border-radius: 28px 28px 0 0;
}

.idea-overlay__header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.idea-overlay__title {
    font-family: 'GT America', 'DM Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2E2D2C;
    margin: 0;
}

.idea-overlay__subtitle {
    color: rgba(46, 45, 44, 0.55);
    margin-top: 0.35rem;
    font-size: 0.875rem;
}

.idea-overlay__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0606EF;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.idea-overlay__close:hover {
    background: transparent;
    color: #0505d5;
}

#rejectModal .idea-overlay__close {
    position: absolute;
    top: 16px;
    right: 16px;
}

.idea-overlay__delete-header {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E53935;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.idea-overlay__delete-header:hover {
    background: rgba(229, 57, 53, 0.2);
}

.rating-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.rating-tooltip__bubble {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(46, 45, 44, 0.95);
    color: white;
    font-size: 0.75rem;
    line-height: 1.3;
    padding: 6px 8px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 20;
}

.rating-tooltip:hover .rating-tooltip__bubble,
.relative:hover > .rating-tooltip__bubble {
    opacity: 1;
}

.idea-details-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #0606EF;
    white-space: nowrap;
}

.idea-details-toggle::after {
    content: '▾';
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.idea-details-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.details-summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #0606EF;
}

.details-summary::-webkit-details-marker {
    display: none;
}

.details-summary::after {
    content: '▾';
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.details-summary.is-open::after {
    transform: rotate(180deg);
}

details[open] .details-summary::after {
    transform: rotate(180deg);
}

.idea-overlay__body {
    padding: 2rem 2.5rem 2.5rem;
}

.idea-overlay__field {
    margin-bottom: 1.5rem;
}

.idea-overlay__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2E2D2C;
    font-size: 0.9375rem;
}

.idea-overlay__label-required {
    color: #E53935;
    margin-left: 0.25rem;
}

.idea-overlay__input,
.idea-overlay__select,
.idea-overlay__textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(46, 45, 44, 0.1);
    border-radius: 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: #2E2D2C;
    transition: all 0.2s ease;
}

.idea-overlay__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 3.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E2D2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 16px;
    cursor: pointer;
}

.idea-overlay__input:focus,
.idea-overlay__select:focus,
.idea-overlay__textarea:focus {
    outline: none;
    border-color: #0606EF;
    box-shadow: 0 0 0 4px rgba(6, 6, 239, 0.1);
}

.idea-overlay__textarea {
    min-height: 120px;
    resize: vertical;
}

.idea-overlay__hint {
    display: block;
    font-size: 0.875rem;
    color: #E53935;
    margin-top: 4px;
}

.idea-overlay__input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.idea-overlay__range-sep {
    font-weight: 600;
    color: rgba(46, 45, 44, 0.4);
    flex-shrink: 0;
}

.idea-overlay__range-toggle {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    border: 2px solid rgba(46, 45, 44, 0.1);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0606EF;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.idea-overlay__range-toggle:hover {
    background: rgba(6, 6, 239, 0.05);
    border-color: #0606EF;
}

.idea-overlay__unit-label {
    font-weight: 600;
    color: rgba(46, 45, 44, 0.5);
    flex-shrink: 0;
}

.idea-overlay__unit-select {
    min-width: 120px;
    flex-shrink: 0;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(46, 45, 44, 0.1);
    border-radius: 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: #2E2D2C;
    transition: all 0.2s ease;
}

.idea-overlay__unit-select:focus {
    outline: none;
    border-color: #0606EF;
    box-shadow: 0 0 0 4px rgba(6, 6, 239, 0.1);
}

.idea-overlay__error {
    color: #E53935;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.idea-overlay__error--visible {
    display: block;
}

.idea-overlay__checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.75);
    margin-top: 0.75rem;
    line-height: 1.4;
}

.idea-overlay__checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    accent-color: #0606EF;
}

.idea-overlay__checkbox-text {
    font-weight: 600;
    color: rgba(46, 45, 44, 0.8);
}

.idea-overlay__info-trigger {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(46, 45, 44, 0.2);
    background: white;
    color: rgba(46, 45, 44, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    position: relative;
    line-height: 1;
}

.idea-overlay__info-trigger:hover,
.idea-overlay__info-trigger:focus-visible {
    border-color: rgba(6, 6, 239, 0.4);
    color: #0606EF;
    outline: none;
}

.idea-overlay__info-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 17, 17, 0.95);
    color: #fff;
    font-size: 0.75rem;
    padding: 8px 10px;
    border-radius: 10px;
    min-width: 220px;
    max-width: 260px;
    text-align: left;
    line-height: 1.35;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.idea-overlay__info-trigger:hover .idea-overlay__info-bubble,
.idea-overlay__info-trigger:focus-visible .idea-overlay__info-bubble {
    opacity: 1;
}

.idea-overlay__footer {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(46, 45, 44, 0.1);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    position: sticky;
    bottom: 0;
    background: white;
    border-radius: 0 0 40px 40px;
}

.idea-overlay__button {
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'DM Sans', sans-serif;
}

.idea-overlay__button--secondary {
    background: transparent;
    color: #0606EF;
    border: 2px solid #0606EF;
}

.idea-overlay__button--secondary:hover {
    background: rgba(6, 6, 239, 0.08);
    color: #0606EF;
}

.idea-overlay__button--primary {
    background: #0606EF;
    color: white;
}

.idea-overlay__button--primary:hover {
    background: #0505d5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 6, 239, 0.3);
}

.idea-overlay__button--primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.idea-overlay__button--secondary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.idea-overlay__button--danger {
    background: transparent;
    color: #E53935;
    border: 2px solid #E53935;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.idea-overlay__button--danger:hover {
    background: rgba(229, 57, 53, 0.08);
}

/* Segmented control for idea type */
.idea-overlay__segment-group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #E5E5EA;
    background: #F2F2F7;
    padding: 3px;
    gap: 3px;
}

.idea-overlay__segment {
    flex: 1;
    padding: 7px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    background: transparent;
    color: #6B6B8A;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.idea-overlay__segment--active {
    background: #fff;
    color: #1C1C1E;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

/* Validation hint (red, for errors) */
.idea-overlay__hint-error {
    display: block;
    font-size: 0.875rem;
    color: #E53935;
    margin-top: 4px;
}

/* Static hint (gray, for info like "Max. 500 Zeichen") */
.idea-overlay__hint-static {
    display: block;
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.5);
    margin-top: 4px;
}

/* Link Input Styles (for shared overlay) */
.link-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.link-input-row input {
    flex: 1;
}

.link-remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(229, 57, 53, 0.1);
    color: #E53935;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.link-remove-btn:hover {
    background: rgba(229, 57, 53, 0.2);
    color: #C62828;
}

.link-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px dashed rgba(46, 45, 44, 0.2);
    border-radius: 12px;
    background: transparent;
    color: rgba(46, 45, 44, 0.6);
    cursor: pointer;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    margin-top: 4px;
}

.link-add-btn:hover {
    border-color: #0606EF;
    color: #0606EF;
    background: rgba(6, 6, 239, 0.05);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 200, 83, 0.95);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 300;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Animations */
@keyframes fadeInBackdrop {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Overlay Adjustments */
@media (max-width: 768px) {
    .idea-overlay {
        padding: 0;
        align-items: stretch;
    }

    .idea-overlay__modal {
        max-height: 100vh;
        height: 100vh;
        width: 100%;
        border-radius: 0;
    }

    .idea-overlay__header {
        padding: 1.5rem 1.25rem 1rem;
        border-radius: 0;
    }

    .idea-overlay__title {
        font-size: 1.5rem;
    }

    .idea-overlay__body {
        padding: 1.25rem;
    }

    .idea-overlay__footer {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
        border-radius: 0;
    }

    .idea-overlay__button {
        flex: 1 1 auto;
        min-width: 0;
    }

    .toast {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        transform: translateX(0) translateY(100px);
    }

    .toast--visible {
        transform: translateX(0) translateY(0);
    }
}

/* ============================================
   SIMILARITY HINT (Informational, Non-blocking)
   ============================================ */

.similarity-hint {
    background: rgba(96, 165, 250, 0.05);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.similarity-hint__header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.similarity-hint__icon {
    color: #60A5FA;
    flex-shrink: 0;
}

.similarity-hint__title {
    font-weight: 600;
    color: #2563EB;
    font-size: 0.9375rem;
}

.similarity-hint__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.similarity-hint__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.similarity-hint__item-title {
    flex: 1;
    font-size: 0.875rem;
    color: #2E2D2C;
}

.similarity-hint__item-badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    white-space: nowrap;
}

.similarity-hint__item-badge--exact {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.similarity-hint__item-badge--strong {
    background: rgba(251, 146, 60, 0.1);
    color: #EA580C;
}

.similarity-hint__item-badge--similar {
    background: rgba(96, 165, 250, 0.1);
    color: #2563EB;
}

.similarity-hint__footer {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
    margin: 0;
    font-style: italic;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .similarity-hint__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .similarity-hint__item-badge {
        align-self: flex-start;
    }
}

/* ============================================
   IDEAS POOL FILTERS
   ============================================ */

.ideas-filters {
    background: white;
    border: 1px solid rgba(46, 45, 44, 0.1);
    border-radius: 32px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.ideas-filters__row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.ideas-filters__field {
    flex: 1;
    min-width: 0;
}

.ideas-filters__field--search {
    flex: 2;
}

.ideas-filters__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E2D2C;
    margin-bottom: 0.5rem;
}

.ideas-filters__input,
.ideas-filters__select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(46, 45, 44, 0.1);
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: #2E2D2C;
    transition: all 0.2s ease;
}

.ideas-filters__input:focus,
.ideas-filters__select:focus {
    outline: none;
    border-color: #0606EF;
    box-shadow: 0 0 0 3px rgba(6, 6, 239, 0.1);
}

.ideas-filters__input::placeholder {
    color: rgba(46, 45, 44, 0.4);
}

.ideas-filters__toggles {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.ideas-filters__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(46, 45, 44, 0.03);
    border: 2px solid rgba(46, 45, 44, 0.1);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.ideas-filters__toggle:hover {
    background: rgba(46, 45, 44, 0.05);
}

.ideas-filters__toggle--active {
    background: rgba(6, 6, 239, 0.1);
    border-color: #0606EF;
    color: #0606EF;
}

.ideas-filters__toggle-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(46, 45, 44, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.ideas-filters__toggle--active .ideas-filters__toggle-checkbox {
    background: #0606EF;
    border-color: #0606EF;
}

.ideas-filters__toggle-checkbox-icon {
    display: none;
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
}

.ideas-filters__toggle--active .ideas-filters__toggle-checkbox-icon {
    display: block;
}

.ideas-filters__toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
}

.ideas-filters__stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(46, 45, 44, 0.1);
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
}

/* Empty State */
.ideas-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(46, 45, 44, 0.02);
    border-radius: 32px;
    border: 2px dashed rgba(46, 45, 44, 0.1);
}

.ideas-empty__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.ideas-empty__title {
    font-family: 'GT America', 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E2D2C;
    margin-bottom: 0.5rem;
}

.ideas-empty__message {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ideas-filters {
        padding: 1.25rem;
        border-radius: 24px;
    }
    
    .ideas-filters__row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .ideas-filters__field--search {
        flex: 1;
    }
    
    .ideas-filters__toggles {
        gap: 0.75rem;
    }
    
    .ideas-filters__toggle {
        flex: 1 1 auto;
        justify-content: center;
    }
    
    .ideas-empty {
        padding: 3rem 1.5rem;
        border-radius: 24px;
    }
    
    .ideas-empty__icon {
        font-size: 2.5rem;
    }
    
    .ideas-empty__title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .ideas-filters__toggle {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
    }
}

/* ============================================
   ACCESS DENIED PAGE
   ============================================ */

.access-denied-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFEFA;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.access-denied {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    border-radius: 28px;
    border: 1px solid rgba(46, 45, 44, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.access-denied__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.access-denied__title {
    font-family: 'GT America', 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E2D2C;
    margin-bottom: 1rem;
}

.access-denied__message {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.access-denied__hint {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.6);
    margin-bottom: 1rem;
}

.access-denied__hint strong {
    color: #2E2D2C;
    font-weight: 600;
}

.access-denied__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: inline-block;
    text-align: left;
}

.access-denied__list li {
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(6, 6, 239, 0.05);
    border-radius: 12px;
    color: #2E2D2C;
    font-weight: 500;
}

.access-denied__list li::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20height%3D%2224px%22%20viewBox%3D%220%20-960%20960%20960%22%20width%3D%2224px%22%20fill%3D%22FBF8F5%22%3E%3Cpath%20d%3D%22m382-339.38%20345.54-345.54q8.92-8.93%2020.88-9.12%2011.96-.19%2021.27%209.12%209.31%209.31%209.31%2021.38%200%2012.08-9.31%2021.39l-362.38%20363q-10.85%2010.84-25.31%2010.84-14.46%200-25.31-10.84l-167-167q-8.92-8.93-8.8-21.2.11-12.26%209.42-21.57t21.38-9.31q12.08%200%2021.39%209.31L382-339.38Z%22/%3E%3C/svg%3E") center / contain no-repeat;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.access-denied__button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #0606EF;
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.access-denied__button:hover {
    background: #0505d5;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(6, 6, 239, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .access-denied {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 32px;
    }
    
    .access-denied__icon {
        font-size: 3rem;
    }
    
    .access-denied__title {
        font-size: 1.5rem;
    }
    
    .access-denied__message {
        font-size: 0.875rem;
    }
}

/* ============================================
   VOTING CALLOUT (Conditional)
   ============================================ */

.voting-callout {
    background: linear-gradient(135deg, rgba(6, 6, 239, 0.05) 0%, rgba(6, 6, 239, 0.02) 100%);
    border: 2px solid rgba(6, 6, 239, 0.15);
    border-radius: 20px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.voting-callout__content {
    flex: 1;
}

.voting-callout__title {
    font-family: 'GT America', 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2E2D2C;
    margin-bottom: 0.25rem;
}

.voting-callout__text {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.7);
}

.voting-callout__action {
    flex-shrink: 0;
}

.voting-callout__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0606EF;
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

@media (hover: hover) {
    .voting-callout__button:hover {
        background: #0505d5;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(6, 6, 239, 0.3);
    }
}

/* Voted State */
.voting-callout--voted {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, rgba(0, 200, 83, 0.02) 100%);
    border-color: rgba(0, 200, 83, 0.15);
}

.voting-callout--voted .voting-callout__confirmation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #00C853;
    font-weight: 600;
}

.voting-callout--voted .voting-callout__confirmation-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00C853;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .voting-callout {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem;
        border-radius: 20px;
        gap: 1rem;
    }
    
    .voting-callout__title {
        font-size: 0.875rem;
    }
    
    .voting-callout__action {
        width: 100%;
    }
    
    .voting-callout__button {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .voting-callout {
        border-radius: 28px;
        padding: 1.5rem 2rem;
        margin-bottom: 2.5rem;
    }
    .voting-callout__title {
        font-size: 1.25rem;
    }
    .voting-callout__text {
        font-size: 0.9375rem;
    }
    .voting-callout__button {
        font-size: 0.9375rem;
        padding: 0.875rem 1.75rem;
    }
}

/* ============================================
   SUCCESS TOAST
   ============================================ */

.success-toast {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: white;
    border: 2px solid #00C853;
    border-radius: 24px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 12px 32px rgba(0, 200, 83, 0.25);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    animation: slideInRight 0.4s ease, fadeOut 0.5s ease 4.5s forwards;
    max-width: 400px;
}

.success-toast__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-toast__content {
    flex: 1;
}

.success-toast__title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #00C853;
    margin-bottom: 0.25rem;
}

.success-toast__message {
    font-size: 0.875rem;
    color: rgba(46, 45, 44, 0.7);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .success-toast {
        top: 80px;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Quick Action - Completed State */
.quick-action--completed {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, rgba(0, 200, 83, 0.02) 100%);
    border-color: rgba(0, 200, 83, 0.2);
}

@media (hover: hover) {
    .quick-action--completed:hover {
        border-color: rgba(0, 200, 83, 0.3);
        background: linear-gradient(135deg, rgba(0, 200, 83, 0.08) 0%, rgba(0, 200, 83, 0.03) 100%);
    }
}

.quick-action--completed .quick-action__icon {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 200, 83, 0.08) 100%);
}

/* Result Winner Tile (Team Dashboard View) */
.result-winner-tile {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border: 3px solid #FBBF24;
    border-radius: 28px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-winner-tile__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.result-winner-tile__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: white;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
}

.result-winner-tile__title {
    font-family: 'GT Super Display', 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #2E2D2C;
}

.result-winner-tile__description {
    text-align: center;
    color: #2E2D2C;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.result-winner-tile__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-winner-tile__stat {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 0.75rem;
    text-align: center;
}

.result-winner-tile__stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 0.25rem;
}

.result-winner-tile__stat-label {
    font-size: 0.875rem;
    color: #2E2D2C;
    opacity: 0.7;
}

.result-winner-tile__link {
    display: block;
    text-align: center;
    color: #0606EF;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem;
    transition: all 0.2s;
}

@media (hover: hover) {
    .result-winner-tile__link:hover {
        opacity: 0.8;
        transform: translateY(-1px);
    }
}

@media (max-width: 768px) {
    .result-winner-tile {
        padding: 1.25rem;
    }

    .result-winner-tile__title {
        font-size: 1.25rem;
    }

    .result-winner-tile__stat-value {
        font-size: 1.25rem;
    }
}

/* ============================================
   REJECTED IDEA BADGES & COMPARISON (v3.1)
   ============================================ */

/* Adjusted Badge */
.badge-adjusted {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 200, 83, 0.1);
    color: #00C853;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.badge-rejected {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(229, 57, 53, 0.1);
    color: #E53935;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Comparison Overlay */
.comparison-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 45, 44, 0.8);
    backdrop-filter: blur(4px);
    z-index: 250;
    padding: 2rem;
    overflow-y: auto;
}

.comparison-overlay.open {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.comparison-modal {
    background: white;
    border-radius: 28px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    margin-top: 2rem;
}

.comparison-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(46, 45, 44, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 28px 28px 0 0;
    z-index: 10;
}

.comparison-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(46, 45, 44, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(46, 45, 44, 0.6);
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .comparison-close:hover {
        background: rgba(46, 45, 44, 0.1);
        color: #2E2D2C;
    }
}

.comparison-body {
    padding: 1.5rem 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-column {
    padding: 1.5rem;
    border-radius: 20px;
}

.comparison-column--before {
    background: rgba(158, 158, 158, 0.1);
    border: 2px solid rgba(158, 158, 158, 0.2);
}

.comparison-column--after {
    background: rgba(0, 200, 83, 0.05);
    border: 2px solid rgba(0, 200, 83, 0.2);
}

.comparison-field {
    margin-bottom: 1rem;
}

.comparison-field:last-child {
    margin-bottom: 0;
}

.comparison-field-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(46, 45, 44, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.comparison-field-value {
    font-size: 0.9375rem;
    color: #2E2D2C;
    line-height: 1.5;
}

.comparison-field-value.changed {
    background: rgba(0, 200, 83, 0.15);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border-left: 3px solid #00C853;
}

.comparison-rejection-reason {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(229, 57, 53, 0.08);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 16px;
}

.comparison-rejection-reason__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(229, 57, 53, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.375rem;
}

.comparison-rejection-reason__text {
    font-size: 0.9375rem;
    color: #E53935;
    font-weight: 500;
}

/* Organizer Actions on Rejected Cards */
.rejected-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 57, 53, 0.2);
}

.rejected-card-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: 2px solid;
    font-family: 'DM Sans', sans-serif;
}

.rejected-card-actions button svg {
    flex-shrink: 0;
}

body.ios .rejected-card-actions button svg {
    color: inherit;
}

.rejected-card-actions__edit {
    color: #0606EF;
    border-color: #0606EF;
}

.rejected-card-actions__edit:hover {
    background: rgba(6, 6, 239, 0.05);
}

.rejected-card-actions__compare {
    color: rgba(46, 45, 44, 0.7);
    border-color: rgba(46, 45, 44, 0.2);
}

.rejected-card-actions__compare:hover {
    background: rgba(46, 45, 44, 0.05);
    color: #2E2D2C;
    border-color: rgba(46, 45, 44, 0.4);
}

.rejected-card-actions__restore {
    color: #00C853;
    border-color: #00C853;
}

.rejected-card-actions__restore:hover {
    background: rgba(0, 200, 83, 0.05);
}

/* Mobile Responsive for Comparison */
@media (max-width: 768px) {
    .comparison-overlay {
        padding: 0;
    }

    .comparison-overlay.open {
        align-items: stretch;
    }

    .comparison-modal {
        border-radius: 0;
        margin-top: 0;
        max-height: 100vh;
        height: 100vh;
    }

    .comparison-header {
        padding: 1.25rem 1.5rem;
        border-radius: 0;
    }

    .comparison-body {
        padding: 1.25rem 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-column {
        padding: 1rem;
    }

}

/* ============================================
   BOTTOM NAVIGATION (Mobile Only)
   ============================================ */

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--nav-background, rgba(251, 248, 245, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(46, 45, 44, 0.1);
    z-index: 100;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 540px;
    margin: 0 auto;
    gap: 4px;
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 56px;
    min-width: 0;
    padding: 8px 6px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--nav-text-color);
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    gap: 4px;
    font-weight: 400;
}

.bottom-nav__item:active {
    transform: scale(0.95);
}

.bottom-nav__item.active {
    background: transparent;
    color: var(--nav-active-color);
}

.bottom-nav__item.active::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--nav-active-color);
}

.bottom-nav__item:not(.active):hover {
    background: rgba(6, 6, 239, 0.05);
    color: rgba(46, 45, 44, 0.8);
}

.bottom-nav__icon {
    font-size: 20px;
    line-height: 1;
    margin: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav__icon svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: #2E2D2C;
}

.bottom-nav__item.active .bottom-nav__icon svg {
    fill: var(--nav-active-color);
}

.bottom-nav__label {
    font-size: clamp(0.6rem, 0.9vw, 0.7rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    display: block;
    max-width: none;
}

@media (max-width: 1024px) {
    .bottom-nav__label {
        font-size: clamp(0.58rem, 1vw, 0.65rem);
        letter-spacing: 0.04em;
    }
}

@media (max-width: 640px) {
    .bottom-nav__label {
        font-size: clamp(0.55rem, 1.1vw, 0.6rem);
        letter-spacing: 0.03em;
    }
    .bottom-nav__item {
        padding: 6px 4px;
        gap: 2px;
    }
}

/* Enforce minimum readable text size */
.text-xs {
    font-size: 0.875rem !important;
    line-height: 1.4;
}

/* Show bottom nav on mobile */
@media (max-width: 1024px) {
    .bottom-nav {
        display: block;
    }

    body.with-app-header {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0));
    }

    body.with-app-drawer {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0));
    }

    /* Hide top nav on mobile - use bottom nav instead */
    .app-header__nav {
        display: none;
    }

    .app-header__content {
        justify-content: space-between;
    }
}

/* ============================================
   TOUCH TARGET IMPROVEMENTS
   ============================================ */

/* Improve touch targets for nav links */
.app-header__nav-link {
    min-height: 48px;
    padding: 12px 20px;
}

@media (max-width: 1024px) {
    .app-header__nav-link {
        min-height: 48px;
        min-width: 48px;
        padding: 12px;
    }
}

/* Improve touch target for user button */
.app-header__user-button {
    min-height: 48px;
}

/* ============================================
   DESKTOP LEFT DRAWER
   ============================================ */

.app-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 240px;
    background: #fff;
    border-right: 1px solid rgba(46, 45, 44, 0.08);
    padding: 20px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 80;
}

.app-drawer__top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-drawer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: #2E2D2C;
    text-decoration: none;
}

.app-drawer__section-title {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(46, 45, 44, 0.45);
    font-weight: 700;
    margin: 4px 0 6px;
}

.app-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.app-drawer__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--nav-text-color);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
}

.app-drawer__nav-link:hover {
    background: rgba(6, 6, 239, 0.08);
    color: var(--nav-active-color);
}

.app-drawer__nav-link.active {
    color: var(--nav-active-color);
}

.app-drawer__nav-link.active .app-drawer__nav-label,
.app-drawer__nav-link.active .app-drawer__nav-icon {
    color: var(--nav-active-color);
}

.app-drawer__nav-link:not(.active) {
    color: var(--nav-text-color);
}

.app-drawer__nav-link:not(.active) .app-drawer__nav-icon svg {
    fill: var(--nav-text-color);
}

.app-drawer__nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    border-radius: 999px;
    background: var(--nav-active-color);
}

.app-drawer__nav-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.app-drawer__nav-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.app-drawer__nav-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.2;
    flex: 1;
}

.app-drawer__user {
    margin-top: auto;
    position: relative;
}

.app-drawer__divider {
    height: 1px;
    background: rgba(46, 45, 44, 0.08);
    margin: 4px 0 6px;
}

.app-drawer__user-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(46, 45, 44, 0.1);
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.app-drawer__user-button:hover {
    border-color: rgba(6, 6, 239, 0.3);
    box-shadow: 0 6px 16px rgba(6, 6, 239, 0.12);
}

.app-drawer__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1.5px solid #0606EF;
    color: #0606EF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    overflow: hidden;
    background: transparent;
}

.app-drawer__user-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    min-width: 0;
}

.app-drawer__user-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.app-drawer__role-label {
    font-size: 0.75rem;
    color: rgba(46, 45, 44, 0.55);
}

.app-drawer__dropdown-icon {
    margin-left: auto;
    width: 18px;
    height: 18px;
    color: rgba(46, 45, 44, 0.5);
    transition: transform 0.2s ease;
    align-self: center;
    flex-shrink: 0;
}

.app-drawer__user-button[aria-expanded="true"] .app-drawer__dropdown-icon {
    transform: rotate(180deg);
}

.app-drawer__dropdown {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(46, 45, 44, 0.1);
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(46, 45, 44, 0.12);
    padding: 12px;
    display: none;
    z-index: 90;
}

.app-drawer__dropdown.active {
    display: block;
}

.app-drawer__dropdown-header {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(46, 45, 44, 0.08);
    margin-bottom: 8px;
}

.app-drawer__dropdown-title {
    font-weight: 700;
    font-size: 0.85rem;
}

.app-drawer__dropdown-subtitle {
    font-size: 0.75rem;
    color: rgba(46, 45, 44, 0.55);
}

.app-drawer__user-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.app-drawer__user-option:hover {
    background: rgba(6, 6, 239, 0.08);
}

.app-drawer__user-option.active {
    background: rgba(6, 6, 239, 0.12);
}

.app-drawer__role-icon {
    font-size: 1.1rem;
}

.app-drawer__role-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.app-drawer__role-description {
    font-size: 0.75rem;
    color: rgba(46, 45, 44, 0.55);
}

.app-drawer__check {
    margin-left: auto;
    font-size: 0.85rem;
    color: #0606EF;
    opacity: 0;
}

.app-drawer__user-option.active .app-drawer__check {
    opacity: 1;
}

.dashboard-profile {
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 300;
}

.dashboard-profile-button {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #ffffff;
    color: #2E2D2C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(46, 45, 44, 0.12);
    border: 1px solid rgba(46, 45, 44, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-profile-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(46, 45, 44, 0.16);
}

.dashboard-profile-button__avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border: 1.5px solid #0606EF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0606EF;
    background: transparent;
    padding: 2px;
}

.dashboard-avatar__initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dashboard-avatar__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .dashboard-profile {
        top: 12px;
        right: 16px;
    }
}

.dashboard-profile-flyout {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid rgba(46, 45, 44, 0.1);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(46, 45, 44, 0.14);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.dashboard-profile-flyout.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dashboard-profile-flyout__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #2E2D2C;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.dashboard-profile-flyout__item:hover {
    background: rgba(6, 6, 239, 0.06);
}

.dashboard-profile-flyout__item--danger {
    color: #b23b32;
}

.dashboard-profile-flyout__item--danger:hover {
    background: rgba(178, 59, 50, 0.1);
}

.dashboard-profile-flyout__icon {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}

@media (max-width: 1024px) {
    .app-drawer {
        display: none;
    }
}

/* Dropdown items touch targets */
.app-header__user-option {
    min-height: 52px;
    padding: 12px 16px;
}

/* Quick action touch targets */
.quick-action {
    min-height: 80px;
}

/* Status card CTA touch targets */
.status-card__cta {
    min-height: 48px;
    padding: 12px 24px;
}

/* Form input touch targets */
.quick-form__input,
.quick-form__select,
.quick-form__textarea {
    min-height: 48px;
}

.idea-overlay__input,
.idea-overlay__select {
    min-height: 48px;
}

/* Filter toggle touch targets */
.ideas-filters__toggle {
    min-height: 48px;
    padding: 12px 16px;
}

/* Filter input touch targets */
.ideas-filters__input,
.ideas-filters__select {
    min-height: 48px;
}
