/* tour-ebis stili yvelasi saerto */

body {
    font-family: Arial, sans-serif;
    background-color: #d6d6d6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.question {
    background-color: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input[type="text"] {
    margin-right: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    
}

button:hover {
    background-color: #0056b3;
}

button[disabled] {
    background-color: #ccc;
    cursor: not-allowed;
}

.timer {
    display: inline-block;
    margin-left: 5px;
}


.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%; /* Вы можете изменить это значение, чтобы управлять размером изображения */
    margin-bottom: 20px;
}


.main-title, .team-name {
    text-align: center;
}


.hidden {
    display: none;
}


.hint-button {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    input[type="text"] {
        margin-bottom: 10px;
    }
}


.hidden-hint-button {
    display: none;
}