/* Copyright © 2024 The Matherator Authors.
 * Use of this source code is governed by a completely open-source license
 * that can be found in the LICENSE file.
 */

@font-face {
    font-family: 'DaTeX_Math-Regular';
    src: url(./assets/Whitaker_Math-Regular.ttf);
    font-variant-ligatures: common-ligatures;
}

@font-face {
    font-family: 'Rubisco Text';
    src: url(RubiscoText-VF.ttf);
}

body {
    font-family: 'GIS', Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

h2 {
    text-align: center;
    margin: 20px 0;
    color: #222;
}

p {
    text-align: center;
    margin: 10px 0;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#app-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

form {
    text-align: center;
}

input[type="text"] {
    font-family: 'DaTeX_Math-Regular';
    margin-top: 10px;
    text-align: center;
    width: calc(100% - 40px);
    max-width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: outline 36ms;
}

input[type="text"]:focus {
    outline: #0056b3 solid 3px;
}

input[type="button"] {
    font-family: 'GIS', Arial, sans-serif;
    font-weight: 700;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
    transition: outline 36ms;
}

input[type="button"]:focus {
    outline: #0056b3 solid 3px;
}

input[type="button"]:hover {
    background-color: #0056b3;
}

h3 {
    margin-top: 20px;
    text-align: center;
    color: #444;
}

ol#stepsList {
    margin: 20px auto;
    padding: 0;
    list-style: none;
    max-width: 100%;
}

ol#stepsList li {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px 0;
    padding: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

strong {
    color: #333;
}

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    #app-container {
        margin: 10px;
        padding: 15px;
    }

    input[type="button"] {
        font-size: 12px;
        padding: 8px 15px;
    }
}