/* 邮件预览样式 */
.email-preview-container {
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.email-preview-header {
    margin-bottom: 20px;
}

.email-preview-content {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.email-preview-attachments {
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-top: 15px;
}

/* 预览按钮样式 */
.attachment-buttons {
    display: flex;
    align-items: center;
}

/* 附件项样式优化 */
.attachment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.attachment-item:last-child {
    border-bottom: none;
}

.attachment-info {
    flex: 1;
}
