/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto; /* Omogućava skrolovanje */
}

#quiz-container {
    position: relative;
    width: 100vw; /* Puna širina ekrana */
    min-height: 100vh; /* Minimalna visina da pokrije ekran */
    box-sizing: border-box;
}

#quiz-image {
    width: 100%; /* Puna širina slike */
    height: 100%; /* Puna visina slike */
    object-fit: cover; /* Slika ispunjava prostor bez izobličenja */
    position: absolute; /* Fiksiraj sliku u pozadini */
    top: 0;
    left: 0;
    z-index: -1; /* Pošalji sliku u pozadinu */
}

#answer {
    display: none; /* Ostaje skriveno dok se ne koristi */
    background: rgb(78 185 26 / 70%);
    color: white;
    font-size: 24px;
padding-block: 6px;
    padding-inline: 10px;
}

button {
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.7); /* Tamna pozadina za kontrast */
    color: #fff;
    border-radius: 5px; /* Blago zaobljene ivice */
}

#start-button, #stop-button {
    flex: 1;
    margin: 5px;
}

#quiz-container .button-row {
    display: flex; /* Postavi dugmiće u red */
    justify-content: space-around; /* Ravnomerni razmak između dugmića */
    margin-bottom: 10px; /* Razmak između redova */
}

#quiz-container .button-column {
    display: flex; /* Vertikalni raspored dugmića */
    flex-direction: column;
    align-items: center; /* Centriraj dugmiće horizontalno */
    position: absolute; /* Postavi grupu dugmića preko slike */
    bottom: 55px; /* Malo razmaka od dna */
    width: 100%; /* Dugmići zauzimaju punu širinu */
}


/*forma*/
label,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
	color:#fff;
}

[type=submit]:not(:disabled){
	background:#61CE70;
}