/**
 * Interpark Bot Manager - Global Styles
 * 从 dashboard.html 提取的样式
 */

/* ========== Base Styles ========== */
body {
    margin: 0;
    background-color: #f5f7fa;
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
}

/* ========== Layout ========== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== Log Viewer ========== */
.log-container {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 15px;
    height: 400px;
    overflow-y: auto;
    font-family: Consolas, Monaco, monospace;
    font-size: 12px;
    border-radius: 4px;
}

.log-line {
    margin: 2px 0;
    white-space: pre-wrap;
    word-break: break-all;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
}

/* ========== Status Indicators ========== */
.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-dot.running {
    background-color: #67C23A;
}

.status-dot.stopped {
    background-color: #909399;
}

/* ========== Vue Cloak (prevent flash) ========== */
[v-cloak] {
    display: none !important;
}
