/* 信号跟单平台样式 */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

/* 策略卡片 */
.strategy-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

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

/* 表格样式 */
.table-responsive {
    overflow-x: auto;
}

/* 徽章样式 */
.badge {
    font-weight: normal;
}

/* 按钮样式 */
.btn {
    transition: all 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
}

/* 导航栏 */
.navbar-brand {
    font-weight: bold;
}

/* 卡片 */
.card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* 响应式 */
@media (max-width: 768px) {
    .strategy-card {
        margin-bottom: 1rem;
    }
}
