/* Общие стили для всех страниц - Тёмная тема */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 2;
    margin: 0;
    padding: 20px;
    color: #e0e0e0;
    background-color: #121212;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    color: #4caf50;
    margin-top: 20px;
    margin-bottom: 10px;
}

a {
    color: #81c784;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
        color: #a5d6a7;
    }
}

code {
    background-color: #1e1e1e;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
    color: #81c784;
    border-left: 2px solid #4caf50;
}

button {
    background-color: #4caf50;
    color: #121212;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;

    &:hover {
        background-color: #81c784;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
