:root {
    --primary: #6366f1;
    /* Indigo 500 */
    --primary-hover: #4f46e5;
    /* Indigo 600 */
    --bg-app: #f8fafc;
    /* Slate 50 */
    --bg-surface: #ffffff;
    --border: #e2e8f0;
    /* Slate 200 */
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --danger: #ef4444;
    --success: #22c55e;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-app);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
}

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

/* Top Bar */
.top-bar {
    height: 60px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.beta-tag {
    font-size: 0.7rem;
    background: var(--primary);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.play-info input {
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-main);
    text-align: center;
    width: 300px;
}

.play-info input:focus {
    border-bottom: 2px solid var(--primary);
}

.actions {
    display: flex;
    gap: 0.75rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-ghost:hover {
    background: #f1f5f9;
    color: var(--text-main);
}

/* Workspace */
.workspace {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Left Sidebar */
.sidebar-left {
    width: 240px;
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.play-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.play-item {
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.play-item:hover {
    background: #f1f5f9;
    color: var(--text-main);
}

.play-item.active {
    background: #e0e7ff;
    color: var(--primary);
    font-weight: 600;
}

/* Canvas Area */
.canvas-area {
    flex: 1;
    background: #f1f5f9;
    /* Darker slate for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-bottom: 100px;
    /* Space for bottom toolbar */
    overflow: auto;
}

.canvas-wrapper {
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    overflow: hidden;
}

#play-canvas {
    display: block;
    cursor: crosshair;
}

/* Bottom Toolbar */
.bottom-toolbar {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 20;
}

.tool-group {
    display: flex;
    gap: 0.5rem;
}

.separator-vertical {
    width: 1px;
    background: var(--border);
    margin: 0 0.5rem;
}

.tool-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 60px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
    gap: 4px;
    transition: all 0.2s;
}

.tool-btn span {
    font-size: 0.75rem;
    font-weight: 500;
}

.tool-btn:hover {
    background: #f1f5f9;
    color: var(--text-main);
}

.tool-btn.active {
    background: #e0e7ff;
    color: var(--primary);
}

.tool-btn.danger:hover {
    background: #fef2f2;
    color: var(--danger);
}

/* Icons */
.icon-circle {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.icon-cross {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
}

.icon-ball {
    width: 14px;
    height: 20px;
    background: currentColor;
    border-radius: 50%;
}

.icon-text {
    font-size: 1.2rem;
}

/* SVG Elements */
.draggable {
    cursor: grab;
}

.draggable:active {
    cursor: grabbing;
}

.route-path {
    fill: none;
    stroke: #334155;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-linejoin: round;
}

.player-circle {
    /* fill and stroke controlled by JS */
    stroke-width: 3;
}

.player-cross {
    stroke: var(--danger);
    stroke-width: 4;
    stroke-linecap: round;
}

.ball {
    fill: #92400e;
    stroke: #78350f;
    stroke-width: 1;
}

/* Properties Panel */
.properties-panel {
    position: absolute;
    top: 80px;
    right: 20px;
    width: 220px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 30;
    animation: slideIn 0.2s ease-out;
}

.properties-panel.hidden {
    display: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-header {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-icon {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.panel-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px var(--border);
    cursor: pointer;
    transition: transform 0.1s;
}

.color-btn:hover {
    transform: scale(1.1);
}

.btn-danger-outline {
    background: transparent;
    border: 1px solid var(--danger);
    color: var(--danger);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-danger-outline:hover {
    background: #fef2f2;
}

/* Print Styles */
@media print {

    .top-bar,
    .sidebar-left,
    .bottom-toolbar,
    .properties-panel {
        display: none !important;
    }

    .canvas-area {
        padding: 0;
        background: white;
    }

    .canvas-wrapper {
        box-shadow: none;
    }
}

/* Playbook Views */
.view-section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.view-section.hidden {
    display: none !important;
}

/* Dark Overlay for Create View */
.dark-overlay {
    background-color: #1f2937;
    /* Dark slate */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
}

.modal-container {
    width: 600px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.btn-icon-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/** Success Checkmark Button **/
.btn-icon-success {
    background: transparent;
    border: 2px solid var(--success);
    color: var(--success);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

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

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.modal-field label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: white;
    text-transform: uppercase;
}

.dark-input {
    background: #334155;
    border: 1px solid #475569;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    width: 100%;
    max-width: 400px;
    text-align: left;
    outline: none;
    font-size: 1rem;
}

.dark-input:focus {
    border-color: var(--primary);
    background: #1e293b;
}

/* Team Size Selector (Buttons) */
.team-size-selector {
    display: flex;
    background: #334155;
    border-radius: 4px;
    /* Slight rounded or sharp as per mock */
    padding: 0;
    overflow: hidden;
}

.size-btn {
    border: none;
    background: transparent;
    color: white;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.size-btn:last-child {
    border-right: none;
}

.size-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.size-btn.active {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.field-preview-box {
    width: 100%;
    max-width: 400px;
    height: 180px;
    background: #334155;
    border-radius: 6px;
    border: 1px solid #475569;
}

/* Sidebar Styles (Modern) */
.modern-sidebar {
    background: white;
    width: 260px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    padding: 1.5rem;
    gap: 2rem;
}

.app-brand-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.app-icon {
    width: 36px;
    height: 36px;
    background: black;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.app-name {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.app-name .subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
}

.playbook-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    transition: background 0.2s;
    font-size: 0.9rem;
}

.playbook-dropdown-btn:hover {
    background: #e2e8f0;
}

.dot-indicator {
    color: var(--primary);
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.current-playbook-selector {
    position: relative;
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    padding: 0.5rem;
    z-index: 50;
    animation: slideDown 0.1s ease-out;
}

.dropdown-menu.hidden {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
    text-align: left;
}

.dropdown-item:hover {
    background: #f1f5f9;
}

.dropdown-item.active {
    background: #e0e7ff;
    color: var(--primary);
    font-weight: 600;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.dropdown-item.create-new {
    color: var(--text-muted);
}

.dropdown-item.create-new:hover {
    color: var(--primary);
}

.menu-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-item {
    text-align: left;
    background: transparent;
    border: none;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    border-radius: 6px;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.menu-item:hover:not(.disabled) {
    background: #f8fafc;
    color: var(--primary);
}

.menu-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Main Content Area */
.light-bg {
    background-color: white;
    /* As per mock likely white or very light grey */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header-title-area h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.header-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-dark {
    background: #0f172a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-dark:hover {
    background: #1e293b;
}

.filter-bar {
    padding: 0 2rem 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.search-wrapper {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 400px;
}

.search-wrapper input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
}

.pill-select {
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

/* Playbook Overview View */
#view-playbook-overview {
    flex-direction: row;
}

/* Sidebar Extensions */
.sidebar-left .btn-text {
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-nav {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    text-align: left;
    background: transparent;
    border: none;
    padding: 0.75rem;
    border-radius: 6px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
}

.nav-item:hover {
    background: #f1f5f9;
    color: var(--text-main);
}

.nav-item.active {
    background: #e0e7ff;
    color: var(--primary);
}

.main-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-app);
    overflow: hidden;
}

.overview-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-surface);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-bar input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 250px;
    outline: none;
}

.plays-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    overflow-y: auto;
}

.play-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.play-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.play-card-preview {
    height: 140px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-card-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.play-card-info {
    padding: 1rem;
}

.play-name {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.play-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e2e8f0;
    color: var(--text-muted);
    margin-left: 1rem;
}

.badge-warning {
    background: #fef9c3;
    color: #a16207;
}

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

.text-muted {
    color: var(--text-muted);
}

/* Fix Top Bar for Editor View */
#view-play-editor .top-bar {
    /* reuse existing top-bar styles but ensure context */
}

.btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

.action-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
/* Sidebar Footer (User Profile) */
.sidebar-footer {
    margin-top: auto; /* Push to bottom */
    padding-top: 15px;
    border-top: 1px solid var(--border);
    position: relative; /* For popover positioning */
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.user-profile:hover {
    background-color: #f1f5f9;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background-color: #e2e8f0; /* Fallback */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
    margin-right: 12px;
    border: 1px solid var(--border);
}

.user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* User Menu Popover */
.user-menu {
    position: absolute;
    bottom: 100%; /* Above footer */
    left: 0;
    width: 100%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 5px;
    margin-bottom: 8px;
    z-index: 50;
    animation: fadeIn 0.15s ease-out;
}

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

.menu-item.danger {
    color: var(--danger);
    width: 100%;
    justify-content: flex-start;
}

.menu-item.danger:hover {
    background-color: #fef2f2;
}

/* Utility Class for Hidden Elements */
.hidden {
    display: none !important;
}

/* Light Theme Auth & Modals */
.auth-overlay {
    background-color: #f1f5f9; /* Light grey background */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
}

.auth-card {
    background: white;
    width: 400px;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-card.large {
    width: 500px;
}

.auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.auth-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.025em;
}

.auth-form-container h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Light Forms */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.light-input {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-main);
    width: 100%;
    transition: all 0.2s;
}

.light-input:focus {
    border-color: var(--primary);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.light-select {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-main);
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Auth Toggle */
.auth-toggle {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-toggle a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-toggle a:hover {
    text-decoration: underline;
}

/* New Modal Header Light */
.modal-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header-light h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.btn-icon-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.btn-icon-close:hover {
    color: var(--text-main);
}

/* Light Theme Team Selector */
.team-size-selector.light-theme {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.team-size-selector.light-theme .size-btn {
    color: var(--text-muted);
    border-right: 1px solid #e2e8f0;
}

.team-size-selector.light-theme .size-btn:last-child {
    border-right: none;
}

.team-size-selector.light-theme .size-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Field Preview Light */
.field-preview-box.light-theme {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.full-width {
    width: 100%;
}
