/* public/css/styles.css */
body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding: 2rem 0;
    margin: 0;
}

.content-block, .article-content {
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.content-block.w-5 {
    max-width: 700px;
}

.content-block.w-4 {
    max-width: 900px;
}

.content-block.w-3 {
    max-width: 1000px;
}

.content-block.w-2 {
    max-width: 1200px;
}

.content-block.w-1 {
    max-width: 1600px;
}

.article-link {
    text-decoration: none;
    color: #212529;
    display: block;
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    transition: background 0.2s;
}

.article-link:hover {
    background: #f8f9fa;
}

.seo-notice {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-size: 0.9em;
    color: #495057;
}

.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #212529;
    font-size: 0.9em;
    padding: 0.5rem 1rem; /* Отступы как у кнопки */
    border: 1px solid #dee2e6; /* Тонкая рамка */
    border-radius: 4px; /* Скругление */
    transition: background 0.2s, color 0.2s; /* Эффект перехода */
    margin-bottom: 1.5rem;
}

.back-link:hover {
    background: #f8f9fa; /* Серый фон при наведении */
    color: #007bff; /* Синий цвет текста при наведении */
}

.back-link svg {
    margin-right: 0.5rem; /* Отступ справа от иконки */
}

.mode-section {
    margin-bottom: 2rem;
}

.shortcut-table {
    width: 100%;
    margin-bottom: 1rem;
}

.key-shortcut {
    background-color: #e9ecef;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    white-space: nowrap;
}

footer {
    max-width: 800px;
    margin: 1rem auto 0 auto;
    text-align: center;
    font-size: 0.8em;
    color: #6c757d;
    padding: 1rem 0;
    border-top: 1px solid #dee2e6;
}