/**
 * 游客投稿插件 - 样式表
 */

/* 后台管理表格 */
.guest-post-admin-table {
    width: 100%;
    border-collapse: collapse;
}
.guest-post-admin-table th,
.guest-post-admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.guest-post-admin-table th {
    background: #f5f5f5;
    font-weight: bold;
}
.guest-post-admin-table tr:hover {
    background: #fafafa;
}

/* 状态标签 */
.guest-post-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}
.guest-post-status.pending  { background: #fff3cd; color: #856404; }
.guest-post-status.approved { background: #d4edda; color: #155724; }
.guest-post-status.rejected { background: #f8d7da; color: #721c24; }

/* 预览弹窗 */
.guest-post-preview-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}
.guest-post-preview-box {
    position: relative;
    width: 700px;
    max-height: 80vh;
    margin: 60px auto;
    background: #fff;
    border-radius: 6px;
    padding: 25px;
    overflow-y: auto;
}
.guest-post-preview-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.guest-post-preview-close:hover {
    color: #333;
}

/* 前台投稿页面响应式 */
@media (max-width: 768px) {
    .guest-post-wrapper {
        margin: 10px;
        padding: 20px;
    }
    .guest-post-form .captcha-group {
        flex-direction: column;
        align-items: flex-start;
    }
}
