/* Стили для страницы карты сайта */
.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 40px;
}

.sitemap-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.sitemap-header p {
    font-size: 18px;
    color: #666;
}

/* Табы */
.sitemap-tabs {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sitemap-tabs-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.sitemap-tabs-nav li {
    margin: 0;
}

.sitemap-tabs-nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sitemap-tabs-nav li.active a {
    color: #0073aa;
    background: #fff;
    border-bottom: 3px solid #0073aa;
}

.sitemap-tabs-nav a:hover {
    color: #0073aa;
    background: #f0f0f0;
}

/* Содержимое табов */
.sitemap-tabs-content {
    padding: 30px;
}

.sitemap-tab-panel {
    display: none;
}

.sitemap-tab-panel.active {
    display: block;
}

.sitemap-tab-panel h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Общие стили списков */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
}

.sitemap-list a {
    text-decoration: none;
    color: #0073aa;
    display: inline-block;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: #00a0d2;
    text-decoration: underline;
}

.sitemap-date {
    color: #999;
    font-size: 0.85em;
    margin-left: 10px;
}

.sitemap-count {
    color: #999;
    font-size: 0.85em;
}

/* Стили для постов по годам и месяцам */
.sitemap-posts-by-year {
    margin-bottom: 30px;
}

.sitemap-year {
    margin-bottom: 30px;
}

.sitemap-year h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.sitemap-month {
    margin-bottom: 20px;
    padding-left: 20px;
}

.sitemap-month h4 {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

/* Стили для страниц */
.sitemap-pages li {
    margin-bottom: 15px;
}

.sitemap-subpages {
    margin-top: 10px;
    margin-left: 30px;
    list-style: none;
    padding: 0;
}

/* Стили для категорий */
.sitemap-subcategories {
    margin-top: 10px;
    margin-left: 30px;
    list-style: none;
    padding: 0;
}

/* Стили для облака тегов */
.sitemap-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.sitemap-tags li {
    margin-bottom: 5px;
    padding: 5px 10px;
    background: #f9f9f9;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.sitemap-tags li:hover {
    background: #f0f0f0;
}

/* Стили для авторов */
.sitemap-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sitemap-author:last-child {
    border-bottom: none;
}

.sitemap-author-avatar {
    margin-right: 20px;
}

.sitemap-author-avatar img {
    border-radius: 50%;
}

.sitemap-author-info {
    display: flex;
    flex-direction: column;
}

.sitemap-author-info a {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Стили для XML-карт */
.sitemap-xml-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.sitemap-xml-table th, 
.sitemap-xml-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.sitemap-xml-table th {
    background: #f9f9f9;
    font-weight: 600;
}

.sitemap-xml-link {
    display: flex;
    align-items: center;
}

.sitemap-xml-link .dashicons {
    margin-left: 5px;
    font-size: 16px;
}

.sitemap-generate-button {
    margin-top: 30px;
    text-align: center;
}

.sitemap-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sitemap-button:hover {
    background: #00a0d2;
}

/* Адаптивность */
@media (max-width: 768px) {
    .sitemap-tabs-nav {
        flex-wrap: wrap;
    }
    
    .sitemap-tabs-nav li {
        width: 50%;
        text-align: center;
    }
    
    .sitemap-tabs-content {
        padding: 20px 15px;
    }
    
    .sitemap-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sitemap-author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .sitemap-xml-table {
        font-size: 14px;
    }
    
    .sitemap-xml-link {
        font-size: 12px;
        word-break: break-all;
    }
}