@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap');

body {
    background-color: #191a1a;
    color: #ffffff;
    font-family: 'Ubuntu Mono', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 20px;
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin-top: 60px;
    margin-bottom: 0;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 1em;
}

/* ИЗМЕНЕН БЛОК НИЖЕ */
hr {
    border: none;
    height: 2px;
    background-color: #2d2f2f;
    width: 900px; /* Задаём ширину линии */
    
    /* Эти 3 строки центрируют линию на странице */
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    /* Сохраняем вертикальные отступы */
    margin-top: 80px;
    margin-bottom: 80px;
}

.command-box {
    border: 1px solid #ff0000;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.format-box {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.format-box p {
    margin: 0;
    text-align: center;
    font-size: 1.3em;
}

code {
    font-family: 'Ubuntu Mono', monospace;
    background-color: #2a2a2a;
    padding: 2px 5px;
    border-radius: 3px;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
}

ul ul {
    margin-top: 10px;
    margin-left: 20px;
}

ul ul li {
    margin-bottom: 8px;
}

.input-format-section {
    margin-bottom: 0;
}