/* 自定义样式 */
body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.btn {
    border-radius: 6px;
}

.table {
    border-radius: 6px;
    overflow: hidden;
}

.badge {
    font-size: 0.875em;
}

/* iframe 优化 */
body.iframe-mode {
    margin: 0;
    padding: 10px;
}

.iframe-mode .container {
    margin-top: 0;
    max-width: 100%;
}

.iframe-mode .col-md-10, 
.iframe-mode .col-lg-8 {
    max-width: 100%;
    flex: 0 0 100%;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .card-body {
        padding: 1rem;
    }
} 