.project-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.project-table thead {
    background-color: #f8f8f8;
}

.project-table th {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.project-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    color: #666;
}

.project-table tbody tr:hover {
    background-color: rgba(50, 150, 250, 0.1);
}

.project-table button {
    padding: 6px 12px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.project-table button:hover {
    background-color: #1976D2;
}

/* 状态样式 */
.status-operational {
    color: #4CAF50;
    font-weight: 600;
}

.status-under-construction {
    color: #FFA500;
    font-weight: 600;
}

.status-planning {
    color: #2196F3;
    font-weight: 600;
}

/* 信息窗口样式 */
.info-window {
    padding: 15px;
    max-width: 300px;
}

.info-window h2 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
}

.info-window .info-content p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

.info-window .info-content strong {
    color: #333;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
    .project-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
} 