/* 全局样式 */
body {
    background-color: #f8f9fa;
    font-family: 'Microsoft YaHei', sans-serif;
}

.container {
    max-width: 1200px;
}

/* 卡片样式 */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 100%;
}

.card-header {
    font-weight: bold;
}

/* 状态信息样式 */
.status-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.status-label {
    font-weight: bold;
    color: #555;
}

.status-value {
    font-weight: 500;
    color: #007bff;
}

/* 日志容器样式 */
.log-container {
    height: 400px;
    overflow-y: auto;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

.log-entry {
    margin-bottom: 5px;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

.log-time {
    color: #6c757d;
    font-size: 0.8rem;
    margin-right: 5px;
}

.log-message {
    color: #212529;
}

.log-success {
    color: #28a745;
}

.log-error {
    color: #dc3545;
}

.log-warning {
    color: #ffc107;
}

.log-info {
    color: #17a2b8;
}

/* 按钮样式 */
.btn {
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }
    
    .log-container {
        height: 300px;
    }
}