/**
 * 用户自助注销页面模板样式
 *
 * @package User_Self_Delete
 * @since 1.0.0
 */

/* 页面模板专用样式 */
.page-template-user-self-delete-template .entry-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-template-user-self-delete-template .entry-title {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.page-template-user-self-delete-template .entry-content {
    max-width: 800px;
    margin: 0 auto 5rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-template-user-self-delete-template .entry-content {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .page-template-user-self-delete-template .entry-title {
        font-size: 2rem;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .page-template-user-self-delete-template .entry-content {
        background: #2d3748;
        color: #e2e8f0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .page-template-user-self-delete-template .entry-title {
        color: #f56565;
    }
}