/* 邮件群发平台样式 */

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

.container {
    flex: 1;
}

/* 导航栏 */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: 600;
}

/* 卡片样式 */
.card {
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    margin-bottom: 20px;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

/* 表格样式 */
.table th {
    font-weight: 600;
    color: #495057;
}

.table td {
    vertical-align: middle;
}

/* 表单样式 */
.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}

/* 按钮样式 */
.btn {
    border-radius: 5px;
}

.btn-primary {
    background-color: #4a90d9;
    border-color: #4a90d9;
}

.btn-primary:hover {
    background-color: #357abd;
    border-color: #357abd;
}

/* 徽章样式 */
.badge {
    padding: 5px 10px;
    font-weight: 500;
}

/* 警示框 */
.alert {
    border-radius: 5px;
}

/* 页脚 */
footer {
    padding: 20px 0;
    text-align: center;
    color: #6c757d;
    border-top: 1px solid #eee;
    margin-top: auto;
}
