/* OK WordPress Sitemap - 前端样式 */

/* 网站地图小工具样式 */
.okwpsm-widget {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.okwpsm-widget-title {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: #495057;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #007cba;
}

.okwpsm-widget-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.okwpsm-widget-links li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.okwpsm-widget-links li:before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #007cba;
    font-weight: bold;
}

.okwpsm-widget-links a {
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.okwpsm-widget-links a:hover {
    color: #007cba;
    text-decoration: underline;
}

/* 短代码样式 */
.okwpsm-shortcode {
    margin: 20px 0;
}

.okwpsm-shortcode-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.okwpsm-shortcode-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.okwpsm-shortcode-item {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.3s ease;
}

.okwpsm-shortcode-item:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

.okwpsm-shortcode-link {
    display: block;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 5px;
}

.okwpsm-shortcode-link:hover {
    color: #007cba;
}

.okwpsm-shortcode-count {
    font-size: 0.9rem;
    color: #6c757d;
}

/* 面包屑样式 */
.okwpsm-breadcrumb {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.okwpsm-breadcrumb a {
    color: #007cba;
    text-decoration: none;
}

.okwpsm-breadcrumb a:hover {
    text-decoration: underline;
}

.okwpsm-breadcrumb-separator {
    margin: 0 8px;
    color: #6c757d;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .okwpsm-shortcode-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .okwpsm-widget {
        padding: 12px;
    }
    
    .okwpsm-shortcode-item {
        padding: 12px;
    }
}