/* Promisorium - Modus OS */
:root {
    --bg-deep: #0a0a0f;
    --bg-surface: #12121a;
    --bg-elevated: #1a1a25;
    --bg-hover: #252535;
    --text-primary: #f0f0f5;
    --text-secondary: #8888a0;
    --text-muted: #555566;
    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.3);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --border: rgba(99, 102, 241, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow: hidden;
}

.app {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3-a-Day Tracker */
.stat-three-a-day {
    padding: 4px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-three-a-day.goal-met {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.08);
}

.stat-three-a-day .stat-value {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.three-a-day-dots {
    display: flex;
    gap: 6px;
    font-size: 20px;
}

.three-a-day-dot {
    color: var(--text-muted);
    transition: all 0.3s;
}

.three-a-day-dot.filled {
    color: var(--success);
}

.stat-three-a-day.goal-met .three-a-day-dot.filled {
    color: var(--success);
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.stat-three-a-day.goal-met .stat-label {
    color: var(--success);
}

.three-a-day-extra {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-left: 2px;
}

/* Celebration animation when 3-a-day goal is hit */
.stat-three-a-day.celebrate {
    animation: celebrate 1.2s ease-out;
}

@keyframes celebrate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    15% {
        transform: scale(1.15);
        box-shadow: 0 0 20px 4px rgba(16, 185, 129, 0.5);
    }
    30% {
        transform: scale(0.95);
    }
    45% {
        transform: scale(1.08);
        box-shadow: 0 0 30px 8px rgba(16, 185, 129, 0.3);
    }
    60% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
        box-shadow: none;
    }
}

.stat-three-a-day.celebrate .three-a-day-dot.filled {
    animation: dot-pop 0.6s ease-out;
}

.stat-three-a-day.celebrate .three-a-day-dot.filled:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-three-a-day.celebrate .three-a-day-dot.filled:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes dot-pop {
    0% { transform: scale(1); }
    40% { transform: scale(1.6); text-shadow: 0 0 12px rgba(16, 185, 129, 0.8); }
    100% { transform: scale(1); }
}

.btn-add {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-icon {
    font-size: 18px;
    font-weight: 300;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Flow Container */
.flow-container {
    flex: 1;
    display: flex;
    gap: 16px;
    padding: 20px 20px 12px;
    overflow: hidden;
}

/* Sections */
.flow-section {
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.flow-section.drag-over {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.section-pre {
    flex: 2;
    border-color: rgba(99, 102, 241, 0.3);
}

.section-process {
    flex: 2;
    border-color: rgba(245, 158, 11, 0.3);
}

.section-talked {
    flex: 1;
    border-color: rgba(16, 185, 129, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.section-header h2 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-pre .section-header h2 { color: var(--accent); }
.section-process .section-header h2 { color: var(--warning); }
.section-talked .section-header h2 { color: var(--success); }

.section-count {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 4px 10px;
    border-radius: 12px;
}

.section-body {
    flex: 1;
    display: flex;
    gap: 1px;
    background: var(--border);
    overflow: hidden;
}

/* Lanes within sections */
.lane {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    min-width: 0;
}

.lane.drag-over {
    background: rgba(99, 102, 241, 0.05);
}

.lane-label {
    font-size: 11px;
    color: #7a7a90;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 14px 6px;
    border-bottom: 1px dashed var(--border);
}

.lane-full .lane-label {
    display: none;
}

.lane-pool {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
    overflow-y: auto;
    min-height: 100px;
}

/* Contact Cards - More distinctive design */
.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 120px;
    padding: 14px;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    cursor: grab;
    transition: all 0.2s;
    user-select: none;
    border: 1px solid transparent;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--card-accent, var(--accent));
}

.contact-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: var(--border);
}

.contact-card.dragging {
    opacity: 0.4;
    cursor: grabbing;
}

.contact-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-glow);
}

/* Card type indicator */
.card-type {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.card-type-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--card-accent, var(--text-muted));
}

.card-type-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* Card name */
.card-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    word-break: break-word;
}

/* Card meta info */
.card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-muted);
}

.card-date {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    background: var(--bg-surface);
    border-radius: 4px;
}

.card-date svg {
    width: 10px;
    height: 10px;
}

/* Promise indicators - two badges */
.card-promises {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
}

.card-promise-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--bg-deep);
}

.card-promise-badge.outgoing {
    background: var(--warning);
}

.card-promise-badge.incoming {
    background: var(--accent);
    color: white;
}

/* Initial avatar circle */
.card-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--card-accent, var(--accent)) 0%, rgba(99, 102, 241, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    flex-shrink: 0;
}

/* Empty state */
.lane-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: #6a6a80;
    font-size: 12px;
    font-style: italic;
}

/* Promises in Flight - Horizontal Swim Lane */
.promises-flight-container {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.promises-flight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.promises-flight-header h2 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ec4899;
}

.promises-flight-header .section-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 3px 8px;
    border-radius: 10px;
}

.promises-flight-lanes {
    display: flex;
    gap: 12px;
    min-height: 120px;
    max-height: 40vh;
}

.flight-lane {
    flex: 1;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.2s;
}

.flight-lane.drag-over {
    border-color: #ec4899;
    background: rgba(236, 72, 153, 0.05);
}

.flight-lane-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px dashed var(--border);
}

.flight-lane-icon {
    font-size: 14px;
}

.flight-lane-label {
    font-size: 11px;
    color: #8a8aa0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-lane-pool {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
    overflow-y: auto;
}

.flight-lane-pool .lane-empty {
    width: 100%;
    height: 100%;
    font-size: 11px;
}

/* Promise Cards in Flight Lanes */
.promise-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 160px;
    padding: 10px 12px;
    background: var(--bg-surface);
    border-radius: var(--radius-sm);
    cursor: grab;
    transition: all 0.2s;
    user-select: none;
    border: 1px solid var(--border);
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    background: var(--card-accent, var(--accent));
}

.promise-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.promise-card.dragging {
    opacity: 0.4;
    cursor: grabbing;
}

.promise-card.outgoing::before {
    background: var(--warning);
}

.promise-card.incoming::before {
    background: var(--accent);
}

.promise-card-direction {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.promise-card-icon {
    font-size: 10px;
    opacity: 0.7;
}

.promise-card.outgoing .promise-card-icon {
    color: var(--warning);
}

.promise-card.incoming .promise-card-icon {
    color: var(--accent);
}

.promise-card-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.promise-card-contact {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.promise-card-text {
    font-size: 12px;
    line-height: 1.3;
    color: var(--text-primary);
    word-break: break-word;
}

.promise-card-action {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s;
}

.promise-card:hover .promise-card-action {
    opacity: 1;
}

.promise-card-action:hover {
    color: var(--success);
    background: rgba(16, 185, 129, 0.2);
}

/* Landed promise card style */
.promise-card.landed {
    opacity: 0.7;
    border-color: var(--success);
    cursor: default;
}

.promise-card.landed::before {
    background: var(--success) !important;
}

.promise-card.landed .promise-card-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

.promise-card-landed {
    font-size: 10px;
    font-weight: 600;
    color: var(--success);
    margin-top: 4px;
}

/* Flight status indicator in panel */
.promise-flight-status {
    font-size: 12px;
    margin-left: auto;
    padding-right: 4px;
}

/* Promises Panel */
.promises-panel {
    width: 0;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    overflow: hidden;
    transition: width 0.3s ease;
    flex-shrink: 0;
}

.promises-panel.open {
    width: 340px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-bottom: 1px solid var(--border);
}

.panel-header h2 {
    font-size: 15px;
    font-weight: 600;
}

.panel-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.panel-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.panel-content {
    padding: 18px;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}

.selected-contact-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.selected-contact-status {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.promise-section {
    margin-bottom: 20px;
}

.promise-section-title {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promise-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.promise-check {
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.promise-check:hover {
    border-color: var(--accent);
}

.promise-check.fulfilled {
    background: var(--success);
    border-color: var(--success);
}

.promise-check.fulfilled::after {
    content: '\2713';
    color: white;
    font-size: 11px;
}

.promise-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.promise-text.fulfilled {
    text-decoration: line-through;
    color: var(--text-muted);
}

.promise-delete {
    opacity: 0;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    font-size: 14px;
}

.promise-item:hover .promise-delete {
    opacity: 1;
}

.promise-delete:hover {
    color: var(--danger);
}

.add-promise {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.add-promise input {
    flex: 1;
    padding: 8px 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 12px;
}

.add-promise input::placeholder {
    color: var(--text-muted);
}

.add-promise input:focus {
    outline: none;
    border-color: var(--accent);
}

.add-promise button {
    padding: 8px 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    cursor: pointer;
}

.panel-actions {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.btn-danger {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
    border-radius: var(--radius-sm);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger:hover {
    background: var(--danger);
    color: white;
}

/* Type Bar */
.type-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.type-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-right: 6px;
}

.type-pill {
    padding: 5px 12px;
    background: var(--bg-elevated);
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 11px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.type-pill:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.type-pill.active {
    border-color: var(--accent);
    color: var(--accent);
}

.type-pill-add {
    border-style: dashed;
    border-color: var(--text-muted);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 1000;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 24px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(20px);
    transition: transform 0.2s;
}

.modal.open .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

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

.form-group label {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="date"] {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 13px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Make the date picker calendar icon visible in dark mode */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
    cursor: pointer;
}

.form-group input[type="color"] {
    width: 50px;
    height: 36px;
    padding: 4px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.type-select {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.type-option {
    padding: 6px 12px;
    background: var(--bg-elevated);
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.type-option:hover {
    background: var(--bg-hover);
}

.type-option.selected {
    border-color: var(--accent);
    color: var(--text-primary);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-secondary {
    flex: 1;
    padding: 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.btn-primary {
    flex: 1;
    padding: 10px;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    box-shadow: 0 4px 16px var(--accent-glow);
}

/* Empty state */
.empty-state {
    color: var(--text-muted);
    font-size: 12px;
    padding: 12px 8px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
    .header-stats { display: none; }
    .flow-container { padding: 12px; gap: 12px; }
    .contact-card { width: 100px; padding: 10px; }
    .card-name { font-size: 12px; }
}

@media (max-width: 800px) {
    .promises-panel.open {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 100;
    }
}

/* ===== Sign-In Screen ===== */
.sign-in-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg-deep);
}

.sign-in-card {
    text-align: center;
    padding: 48px 40px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 400px;
    width: 100%;
}

.sign-in-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

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

.sign-in-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.sign-in-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

#googleSignInBtn {
    display: flex;
    justify-content: center;
}

/* ===== Header Right (user menu) ===== */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    object-fit: cover;
}

.btn-signout {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.btn-signout:hover {
    color: var(--danger);
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}
