textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

#variables-list li {
    margin-bottom: 10px;
}

#template-manager {
    width: 100%;
    margin: 0 auto;
    padding-right: 10px;
    box-sizing: border-box;
}

#template-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

#template-content {
    height: 500px;
}

#campaign-data {
    margin-top: 10px;
    width: 100%;
    height: 150px;
    padding: 10px;
    box-sizing: border-box;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid #ccc;
    resize: none;
    overflow-y: auto;
}

#admitad-request {
    margin-bottom: 10px;
}

#template-info {
    display: flex;
    gap: 20px;
}

#final-template {
    margin-top: 15px;
}

#template-info {
    margin: 10px;
}

#template-blocks, #template-variables {
    flex: 1;
}

#admitad-response {
    margin-top: 10px;
}

#template-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Автоматически подбирает количество столбцов */
    gap: 20px; /* Расстояние между элементами */
}

#template-files {
    margin-top: 10px;
}

/* Стили для мобильных устройств */
@media (max-width: 1248px) {
    #template-info {
        grid-template-columns: 1fr; /* На мобильных устройствах один столбец */
    }
}