body{
font-family:Arial;
background-image: url("body-bg-1.png");
background-repeat: repeat;
padding:40px;
}

.container{

max-width:600px;
margin:auto;
background:white;
padding:30px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);

}

label{
display:block;
margin-top:15px;
font-weight:bold;
font-size:16px;
}

input,select,textarea{

width:100%;
box-sizing: border-box;
padding:10px;
margin-top:5px;
border:1px solid #ccc;
border-radius:4px;

}

textarea{
height:80px;
}

button{

margin-top:20px;
padding:12px;
background:#8b0000;
color:white;
border:none;
border-radius:5px;
width:100%;
font-size:16px;
cursor:pointer;

}

button:hover{

background:#660000;

}

.hint{

font-size:12px;
color:#666;

}

.radio{

margin-top:10px;

}

#loadingOverlay{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
z-index:2000;
justify-content:center;
align-items:center;
flex-direction:column;
color:white;
font-size:18px;
}

.spinner{
border:6px solid #f3f3f3;
border-top:6px solid #3498db;
border-radius:50%;
width:50px;
height:50px;
animation:spin 1s linear infinite;
margin-bottom:10px;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

#successModal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:2001;
justify-content:center;
align-items:center;
}

.modalBox{
background:white;
padding:30px;
border-radius:8px;
text-align:center;
max-width:400px;
}

.modalBox button{
margin-top:15px;
padding:10px 20px;
cursor:pointer;
}


.emailNotice{
margin-top:10px;
font-size:14px;
color:#555;
}


.spamNotice{
margin-top:4px;
font-size:13px;
color:#777;
}


input[type="radio"] {
    accent-color: #8b0000; /* Boji unutrašnjost kružića u tamno crvenu */
    width: auto; /* Sprečava da radio button postane širok 100% */
    margin-right: 5px;
}

/* Da bi labela pored radija bila u istoj liniji */
.radio label {
    display: inline-block;
    margin-right: 15px;
    margin-top: 5px;
    font-weight: normal; 
    cursor: pointer;
}


.info-box {
    background: #fff5f5; /* Blago crvenkasta pozadina da privuče pažnju */
    border-left: 4px solid #8b0000; /* Tvoja tamno crvena boja */
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.info-box p {
    margin: 5px 0;
}

.info-box ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.info-box strong {
    color: #8b0000;
}

.payment-note {
    background: #fff;
    padding: 8px 12px;
    border: 1px dashed #8b0000;
    display: inline-block;
    margin: 10px 0;
    border-radius: 4px;
}


.field-hint {
    display: block;
    font-size: 12px;
    color: #444;
    margin-top: 4px;
    line-height: 1.5;
   
}


.warning-text {
    display: block; /* Prelazi u novi red radi boljeg akcenta */
    color: #8b0000; /* Tvoja tamno crvena boja */
    margin-top: 2px;
}


.warning-bottom {
    margin-top: 25px; /* Ovo "odlepljuje" tekst od dugmeta */
    color: #8b0000;   /* Tvoja tamno crvena boja */
    font-size: 16px;  /* Ovde možeš staviti i 18px ako želiš još krupnije */
    text-align: center; /* Centrirano ispod dugmeta izgleda profesionalnije */
    line-height: 1.5;
}



.back-nav {
    max-width: 600px;    /* Poravnato sa širinom forme */
    margin: 40px auto 20px; /* PRVI BROJ (40px) je razmak od vrha ekrana, 
                               TREĆI BROJ (20px) je razmak od forme */
    padding: 0; 
}

.back-link {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    display: inline-block; /* Važno da bi margina radila kako treba */
    transition: color 0.3s;
}

.back-link:hover {
    color: #8b0000;
}



.share-container {
    text-align: center;
    padding: 20px;
    background: #f9f9f9; /* Blaga siva pozadina da odvoji sekciju */
    border-radius: 10px;
    margin-top: 30px;
    border: 1px dashed #ccc; /* Diskretan okvir */
}

.share-title {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    font-weight: bold;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Razmak između ikonica */
}

.share-icon {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
    background: white;
    padding: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Efekat kada se pređe mišem */
.share-icon:hover {
    transform: translateY(-5px); /* Ikonica se blago podigne */
    box-shadow: 0 8px 15px rgba(0,0,0,0.2); /* Senka postane jača */
}

/* Prilagođavanje za mobilne telefone */
@media (max-width: 480px) {
    .share-buttons {
        gap: 15px;
    }
    .share-icon {
        width: 40px;
        height: 40px;
    }
}