/* 涂装作业报工系统 - 移动端优先样式 */

/* ==================== 全局变量 ==================== */
:root {
    --primary: #1677ff;
    --primary-light: #e6f0ff;
    --primary-dark: #0958d9;
    --success: #52c41a;
    --success-light: #f0fbe8;
    --warning: #faad14;
    --warning-light: #fff7e6;
    --danger: #ff4d4f;
    --danger-light: #fff1f0;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-tertiary: #999;
    --bg-page: #f5f7fa;
    --bg-card: #ffffff;
    --bg-hover: #f0f5ff;
    --border-color: #e8e8e8;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-sm: 6px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ==================== 移动端顶部栏 ==================== */
.mobile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 0 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
    height: 56px;
}

.logo {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
}

.menu-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
    padding: 6px 8px;
}

/* ==================== 左侧导航栏 ==================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 220px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-light);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar.show {
    transform: translateX(0);
}

.sidebar-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-nav {
    flex: 1;
    padding: 10px 10px 20px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: var(--radius);
    margin: 2px 0;
    font-size: 14px;
    transition: all 0.2s;
}

.sidebar-item:hover {
    background: var(--bg-hover);
    color: var(--primary);
}

.sidebar-item.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
}

.sidebar-icon {
    font-size: 16px;
    line-height: 1;
    width: 20px;
    text-align: center;
}

.sidebar-label {
    flex: 1;
}

.sidebar-group {
    margin-top: 14px;
}

.sidebar-group-title {
    font-size: 11px;
    color: var(--text-tertiary);
    padding: 6px 14px 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 侧边栏遮罩（移动端） */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1050;
}

.sidebar-overlay.show {
    display: block;
}

/* ==================== 主内容区域 ==================== */
.main {
    margin-top: 56px;
    padding: 12px;
}

/* ==================== 页面头部 ==================== */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.page-header h2 {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ==================== 卡片样式 ==================== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

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

.card-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mode-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 10px;
    line-height: 1.5;
}

.mode-badge.mode-new {
    background: var(--primary-light);
    color: var(--primary);
}

.mode-badge.mode-edit {
    background: var(--warning-light);
    color: var(--warning);
}

.card-body {
    padding: 16px;
}

/* ==================== 表单样式 ==================== */
.form-group {
    margin-bottom: 14px;
}

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

.required {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 72px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.hint {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

/* 作业人员多选 */
.worker-checkbox-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 160px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 10px;
}

.worker-checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-page);
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    transition: all 0.2s;
}

.worker-checkbox-item:hover {
    background: var(--bg-hover);
}

.worker-checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
    accent-color: var(--primary);
}

.worker-checkbox-item input[type="checkbox"]:checked + span {
    color: var(--primary);
    font-weight: 500;
}

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

/* ==================== 按钮样式 ==================== */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

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

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

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

.btn-success:hover {
    background: #389e0d;
}

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

.btn-danger:hover {
    background: #cf1322;
}

.btn-outline {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.btn:hover {
    opacity: 0.9;
}

/* ==================== 项目列表样式 ==================== */
.project-list {
    display: grid;
    gap: 10px;
}

.project-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    border-left: 3px solid var(--border-color);
}

.project-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.project-card.status-active {
    border-left-color: var(--primary);
}

.project-card.status-completed {
    border-left-color: var(--success);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.project-status {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.project-status.active {
    background: var(--primary-light);
    color: var(--primary);
}

.project-status.completed {
    background: var(--success-light);
    color: var(--success);
}

.project-progress {
    font-size: 12px;
    color: var(--text-tertiary);
}

.project-body {
    margin-bottom: 8px;
}

.project-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.project-info {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-tertiary);
}

.project-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

/* ==================== 构件列表样式 ==================== */
.component-list {
    display: grid;
    gap: 8px;
}

.component-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-page);
    border-radius: var(--radius);
}

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

.component-type {
    font-weight: 500;
    font-size: 14px;
}

.component-quantity {
    font-size: 13px;
    color: var(--text-secondary);
}

.component-actions {
    display: flex;
    gap: 6px;
}

/* ==================== 工序列表样式 ==================== */
.process-list {
    display: grid;
    gap: 8px;
}

.process-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--bg-page);
    border-radius: var(--radius);
    cursor: move;
    transition: background-color 0.2s;
}

.process-item:hover {
    background: var(--bg-hover);
}

.process-drag-handle {
    color: var(--text-tertiary);
    margin-right: 12px;
    font-size: 18px;
}

.process-order {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 12px;
    font-size: 13px;
}

.process-name {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.process-actions {
    display: flex;
    gap: 6px;
}

/* ==================== 报工列表样式 ==================== */
.report-list {
    display: grid;
    gap: 8px;
}

.report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-page);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.report-item.completed {
    border-left-color: var(--success);
    opacity: 0.85;
}

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

.report-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.report-detail {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.report-time {
    font-size: 11px;
    color: var(--text-tertiary);
    display: flex;
    gap: 12px;
}

.report-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

/* ==================== 筛选下拉框 ==================== */
.filter-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    background: var(--bg-card);
    color: var(--text-primary);
}

/* ==================== 空状态 ==================== */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ==================== 弹窗样式 ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-tertiary);
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-secondary);
}

.modal-body {
    padding: 16px;
}

.modal-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* 确认弹窗 */
.confirm-content {
    max-width: 360px;
}

.confirm-message {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* ==================== Toast提示 ==================== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s;
    max-width: 80%;
    text-align: center;
}

.toast.show {
    opacity: 1;
}

.toast.error {
    background: var(--danger);
}

.toast.success {
    background: var(--success);
}

/* ==================== 快捷导航样式 ==================== */
.quick-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-primary);
    transition: box-shadow 0.2s;
}

.quick-nav-item:hover {
    box-shadow: var(--shadow-md);
}

.quick-nav-icon {
    font-size: 22px;
    margin-right: 8px;
}

.quick-nav-text {
    font-weight: 500;
    font-size: 14px;
}

/* ==================== 项目详情样式 ==================== */
.project-detail-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.info-item {
    display: flex;
    flex-direction: column;
    min-width: 100px;
}

.info-label {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.info-value.status-completed {
    color: var(--success);
}

.info-value.status-active {
    color: var(--primary);
}

/* ==================== 进度列表样式 ==================== */
.progress-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 机号Tab */
.machine-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.machine-tab {
    padding: 6px 14px;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.machine-tab:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.machine-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 报工记录机号Tab（复用machine-tab样式） */
.report-machine-tab {
    padding: 6px 14px;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.report-machine-tab:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.report-machine-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 构件进度卡片 */
.component-progress-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.component-progress-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-page);
    flex-wrap: wrap;
    cursor: pointer;
    user-select: none;
}

.component-progress-header:hover {
    background: var(--bg-hover);
}

.component-toggle {
    font-size: 12px;
    color: var(--text-tertiary);
    transition: transform 0.2s;
    width: 14px;
    text-align: center;
}

.component-progress-card.expanded .component-toggle {
    transform: rotate(90deg);
}

/* 默认折叠工序时间线 */
.process-steps {
    display: none;
    padding: 14px;
    overflow-x: auto;
    gap: 0;
}

.component-progress-card.expanded .process-steps {
    display: flex;
}

.component-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.component-qty {
    font-size: 12px;
    color: var(--text-secondary);
}

.component-progress-bar {
    flex: 1;
    min-width: 60px;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    display: block;
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.3s;
}

.component-progress-text {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* 工序步骤 */
.process-step {
    display: flex;
    flex-direction: column;
    min-width: 80px;
    flex-shrink: 0;
}

.step-top {
    display: flex;
    align-items: center;
    height: 22px;
}

.step-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    z-index: 1;
}

.process-step.completed .step-icon {
    background: var(--success-light);
    color: var(--success);
}

.process-step.in-progress .step-icon {
    background: var(--warning-light);
    color: var(--warning);
}

.process-step.pending .step-icon {
    background: var(--border-light);
    color: var(--text-tertiary);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 2px;
}

.process-step.completed .step-line {
    background: var(--success-light);
}

.step-content {
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-name {
    font-size: 12px;
    color: var(--text-primary);
    white-space: nowrap;
}

.process-step.pending .step-name {
    color: var(--text-tertiary);
}

.step-worker {
    font-size: 10px;
    color: var(--text-secondary);
}

.step-time {
    font-size: 10px;
    color: var(--text-tertiary);
}

/* ==================== 报工状态徽章 ==================== */
.report-status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.report-status-badge.completed {
    background: var(--success-light);
    color: var(--success);
}

.report-status-badge.active {
    background: var(--warning-light);
    color: var(--warning);
}

/* ==================== 配置模块样式 ==================== */
.config-grid {
    display: grid;
    gap: 10px;
}

.config-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.config-card:hover {
    box-shadow: var(--shadow-md);
}

.config-icon {
    font-size: 24px;
    margin-right: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
}

.config-info {
    flex: 1;
}

.config-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.config-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

.config-arrow {
    font-size: 18px;
    color: var(--text-tertiary);
}

/* ==================== 作业人员列表样式 ==================== */
.worker-list {
    display: grid;
    gap: 12px;
}

.worker-group {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.worker-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--primary-light);
}

.worker-group-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.worker-group-count {
    font-size: 12px;
    color: var(--text-secondary);
}

.worker-group-body {
    display: grid;
    gap: 6px;
    padding: 8px;
}

.worker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-page);
    border-radius: var(--radius-sm);
}

.worker-info {
    display: flex;
    flex-direction: column;
}

.worker-name {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 14px;
}

.worker-phone {
    font-size: 12px;
    color: var(--text-secondary);
}

.worker-actions {
    display: flex;
    gap: 6px;
}

/* 作业人员多选 - 按工种分组 */
.worker-category-section {
    margin-bottom: 12px;
}

.worker-category-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    padding-left: 4px;
    border-left: 3px solid var(--primary);
    padding-left: 8px;
}

.worker-category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ==================== 工种配置弹窗样式 ==================== */
.category-add-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.category-add-row .form-control {
    flex: 1;
}

.category-list {
    display: grid;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--bg-page);
    border-radius: var(--radius);
}

.category-edit-input {
    flex: 1;
    padding: 6px 10px;
    font-size: 14px;
}

.category-item-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

/* ==================== 响应式设计 ==================== */
@media (min-width: 768px) {
    /* 桌面端：隐藏移动端顶部栏，显示固定侧边栏 */
    .mobile-header {
        display: none;
    }

    .sidebar {
        transform: translateX(0);
        box-shadow: none;
    }

    .sidebar-overlay {
        display: none !important;
    }

    .main {
        margin-top: 0;
        margin-left: 220px;
        padding: 20px;
    }

    .project-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-actions {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .project-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
