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

:root {
    --primary-color: #e74c3c;
    --secondary-color: #34495e;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left h1 {
    font-size: 28px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subtitle {
    color: #bdc3c7;
    font-size: 14px;
}

.header-right {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

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

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

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px 40px;
    background: var(--light-bg);
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.stat-icon.todo {
    background: #f39c12;
}

.stat-icon.in-progress {
    background: #3498db;
}

.stat-icon.completed {
    background: #2ecc71;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* View Tabs */
.view-tabs {
    display: flex;
    gap: 10px;
    padding: 20px 40px;
    border-bottom: 2px solid var(--border-color);
    background: white;
}

.tab {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 20px;
    padding: 20px 40px;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 14px;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    padding: 20px;
}

.view {
    display: none !important;
}

.view.active {
    display: block !important;
}

/* Kanban View */
#kanban-view.active {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kanban-column {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    min-height: 400px;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.column-header h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.task-count {
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Task Card */
.task-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-color);
}

.task-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.task-card.priority-high {
    border-left-color: var(--danger-color);
}

.task-card.priority-medium {
    border-left-color: var(--warning-color);
}

.task-card.priority-low {
    border-left-color: var(--success-color);
}

.task-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.task-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.task-category {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    background: #e8f4f8;
    color: #2980b9;
}

.task-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.task-dates {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.task-progress {
    width: 100%;
    height: 4px;
    background: #ecf0f1;
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.task-progress-bar {
    height: 100%;
    background: var(--success-color);
    transition: width 0.3s;
}

/* Gantt View */
#gantt-container {
    background: white;
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
}

.gantt-task {
    background: var(--primary-color) !important;
}

/* List View */
.task-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.task-table thead {
    background: var(--secondary-color);
    color: white;
}

.task-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.task-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.task-table tbody tr:hover {
    background: var(--light-bg);
}

.task-table .priority-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.task-table .priority-badge.priority-3 {
    background: #fee;
    color: #c0392b;
}

.task-table .priority-badge.priority-2 {
    background: #fef9e7;
    color: #f39c12;
}

.task-table .priority-badge.priority-1 {
    background: #e8f8f5;
    color: #27ae60;
}

.task-table .status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.todo {
    background: #fef9e7;
    color: #f39c12;
}

.status-badge.in-progress {
    background: #e8f4f8;
    color: #3498db;
}

.status-badge.completed {
    background: #e8f8f5;
    color: #27ae60;
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    margin-right: 5px;
    transition: all 0.3s;
}

.action-btn.edit {
    background: #3498db;
    color: white;
}

.action-btn.delete {
    background: #e74c3c;
    color: white;
}

.action-btn:hover {
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
}

.modal-header {
    background: var(--secondary-color);
    color: white;
    padding: 20px 25px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 20px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: #e74c3c;
}

/* Form */
form {
    padding: 25px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 10px;
    }
    
    header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-right {
        width: 100%;
        justify-content: center;
    }
    
    #kanban-view {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Detail Page Styles */
.detail-container {
    padding: 0;
}

.detail-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s;
}

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

.detail-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    min-height: calc(100vh - 80px);
}

.detail-left,
.detail-right {
    padding: 30px;
    background: white;
}

.detail-left {
    border-right: 1px solid var(--border-color);
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Progress Circle */
.progress-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.circular-chart {
    width: 200px;
    height: 200px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: var(--success-color);
    stroke-width: 2.8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    fill: var(--text-primary);
    font-size: 0.5em;
    font-weight: 600;
    text-anchor: middle;
}

/* Subtasks */
.subtasks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subtask-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--light-bg);
    border-radius: 6px;
    transition: all 0.3s;
}

.subtask-item.completed {
    opacity: 0.6;
}

.subtask-item.completed .subtask-input {
    text-decoration: line-through;
}

.subtask-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.subtask-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 5px;
}

.subtask-input:focus {
    outline: none;
    background: white;
    border-radius: 4px;
}

/* Attachments */
.attachments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attachment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 6px;
}

.attachment-item i {
    font-size: 20px;
    color: var(--secondary-color);
}

.attachment-item a {
    flex: 1;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

.attachment-item a:hover {
    color: var(--primary-color);
}

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

/* Comments */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.comment-item {
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 600;
    color: var(--primary-color);
}

.comment-time {
    font-size: 12px;
    color: var(--text-secondary);
    flex: 1;
}

.comment-content {
    color: var(--text-primary);
    line-height: 1.6;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Activity Log */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    gap: 12px;
}

.activity-icon {
    width: 32px;
    height: 32px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

.activity-user {
    font-weight: 500;
}

/* Utility */
.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-icon:hover {
    color: var(--danger-color);
    background: rgba(231, 76, 60, 0.1);
}

.empty-state {
    text-align: center;
    color: var(--text-secondary);
    padding: 20px;
    font-size: 14px;
}

.upload-btn {
    cursor: pointer;
}

/* Mobile responsive for detail page */
@media (max-width: 1024px) {
    .detail-content {
        grid-template-columns: 1fr;
    }

    .detail-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Phone responsive - 竖屏单栏布局 */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .container {
        border-radius: 0;
    }

    header {
        padding: 15px;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .header-left h1 {
        font-size: 18px;
    }

    .subtitle {
        font-size: 12px;
    }

    .header-right {
        flex-direction: column;
        gap: 8px;
    }

    .header-right .btn {
        width: 100%;
        justify-content: center;
    }

    /* 详情页移动端布局 */
    .detail-header {
        padding: 12px 15px;
        flex-direction: column;
        gap: 12px;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .detail-header .header-left {
        flex-direction: column;
        gap: 8px;
    }

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

    .detail-header .header-right {
        flex-direction: row;
        gap: 8px;
    }

    .detail-header .header-right .btn {
        flex: 1;
        font-size: 13px;
        padding: 8px 12px;
    }

    .detail-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .detail-left,
    .detail-right {
        padding: 15px;
    }

    .detail-left {
        border-right: none;
    }

    .detail-section {
        margin-bottom: 25px;
    }

    .detail-section h2 {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .section-header .btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* 防止 iOS 缩放 */
        padding: 10px 12px;
    }

    /* 进度圆环 */
    .progress-circle {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    /* 评论和活动 */
    .comment-form textarea {
        font-size: 16px;
    }

    /* 主页统计 */
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px;
    }

    .stat-card {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* 筛选栏 */
    .filter-bar {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .filter-group {
        width: 100%;
    }

    .filter-group label {
        font-size: 12px;
    }

    .filter-group select {
        font-size: 16px;
        padding: 10px;
    }

    /* 视图切换 */
    .view-tabs {
        padding: 8px 12px;
        gap: 8px;
        overflow-x: auto;
    }

    .tab {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* 看板视图 - 横向滑动 */
    #kanban-view.active {
        display: flex !important;
        overflow-x: auto;
        gap: 15px;
        padding: 0 15px 15px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .kanban-column {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin-bottom: 0;
    }

    .column-header h3 {
        font-size: 16px;
    }

    .task-count {
        font-size: 14px;
    }

    .task-card {
        padding: 12px;
    }

    .task-title {
        font-size: 14px;
    }

    .task-meta {
        font-size: 12px;
    }

    .column-header {
        padding: 12px;
    }

    .task-card {
        margin-bottom: 10px;
    }

    /* 列表视图 */
    .task-table {
        font-size: 13px;
    }

    .task-table th,
    .task-table td {
        padding: 10px 8px;
    }

    /* 弹窗 */
    .modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 20px 15px;
    }

    .modal-header {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .form-actions .btn {
        width: 100%;
    }

    /* 子任务列表 */
    .subtask-item {
        padding: 10px;
    }

    .subtask-input {
        font-size: 16px;
    }

    /* 附件列表 */
    .attachment-item {
        padding: 10px;
    }

    /* 活动记录 */
    .activity-item {
        padding: 10px;
    }
}

/* 非常小的屏幕 */
@media (max-width: 480px) {
    header {
        padding: 12px;
    }

    .header-left h1 {
        font-size: 16px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 10px;
    }

    .stat-card {
        padding: 10px;
    }

    .stat-value {
        font-size: 20px;
    }

    .detail-left,
    .detail-right {
        padding: 12px;
    }

    .detail-section h2 {
        font-size: 15px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* 甘特图优先级颜色 */
.gantt .bar-wrapper.priority-high .bar {
    fill: #e74c3c !important;
}
.gantt .bar-wrapper.priority-high .bar-progress {
    fill: #c0392b !important;
}

.gantt .bar-wrapper.priority-medium .bar {
    fill: #f39c12 !important;
}
.gantt .bar-wrapper.priority-medium .bar-progress {
    fill: #d68910 !important;
}

.gantt .bar-wrapper.priority-low .bar {
    fill: #27ae60 !important;
}
.gantt .bar-wrapper.priority-low .bar-progress {
    fill: #1e8449 !important;
}

/* 甘特图通用样式 */
.gantt .bar {
    stroke-width: 1;
    stroke: rgba(255,255,255,0.3);
}
.gantt .bar-progress {
    stroke-width: 1;
    stroke: rgba(255,255,255,0.2);
}

/* 待补充信息标签样式 */
.info-tag {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(238, 90, 111, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
}

.task-card.needs-info {
    position: relative;
    border: 2px solid #ff6b6b !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.task-card.needs-info:hover {
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.3), 0 8px 20px rgba(0,0,0,0.15);
}

/* 列表视图中的标签 */
.needs-info-row {
    background-color: #fff5f5 !important;
}

.needs-info-row:hover {
    background-color: #ffe8e8 !important;
}

.info-tag-inline {
    display: inline-block;
    margin-left: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    vertical-align: middle;
}

/* 脉冲动画 */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
