/* 基本样式 */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* 导航栏样式 */
.navbar {
    margin-bottom: 20px;
}

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

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

/* 表格样式 */
.table th {
    background-color: #f8f9fa;
}

/* 按钮样式 */
.btn i {
    margin-right: 5px;
}

/* 表单样式 */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 500;
}

/* 自定义样式 */
.product-image {
    max-width: 100%;
    height: auto;
}

.required:after {
    content: " *";
    color: red;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
} 