body {
	font-family: 'Lucida Grande', 'Helvetica Neue', sans-serif;
	font-size: 13px;
	overflow-x: hidden;
}
#wrapper {
border:2px solid;
width:900px;
background-color:#e6e6e6;
}
header p {
    margin:10px;
}
h1{
font-size: 60px;
font-weight:bold;
color: #293f80;
-webkit-text-stroke: 2px white;
margin-top:-10px;

}
.h {
 text-shadow: 0px 1px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777, 0px 3px 0px #666, 0px 5px 0px #555, 0px 4px 0px #444, 0px 7px 0px #333, 0px 5px 4px #001135; 
 
}
#wrapper a {
 text-decoration:none;   
}

.post {
position:relative;
width:95%;
border:1px solid blue;
display:inline-block;
margin:1px;
background-color:white;
font-weight:bold;
}

.post:hover {
border:1px solid blue;
color:blue;
}








.google-icon {
    /* Responsive podešavanja */
    width: 20px;           /* Fiksna širina za desktop */
    max-width: 100%;       /* Sprečava prelazak širine roditelja */
    height: auto;          /* Održava proporcije slike */
    
    /* Pozicioniranje u odnosu na tekst */
    margin-right: 10px;
    vertical-align: middle;
    
    /* Dodatna optimizacija za mobilne uređaje */
    display: inline-block;
}

.edit-btn {
    font-weight:bold;
    font-size:15px;
    text-decoration:underline!important;
}



.kategorija-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.kat-label input[type="radio"] {
    display: none; /* Sakrivamo radio kružić */
}

.kat-dugme {
    display: inline-block;
    padding: 8px 18px;
    background: #ffffff;
    border: 2px solid #ebebeb;
    border-radius: 20px; /* Zaobljene ivice za moderan izgled */
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s all ease;
    color: #555;
}

.kat-dugme:hover {
    border-color: #007bff;
    color: #007bff;
}

/* Stil za odabranu kategoriju */
.kat-label input[type="radio"]:checked + .kat-dugme {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}


 .profile-img-responsive {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid #4285F4;
            object-fit: cover;
            margin-bottom: 15px;
        }


    .category-section {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
        }
        
        .category-title {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        
   .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
        
        .category-option {
            display: block;
            cursor: pointer;
            margin: 0;
        }
        
        .category-option input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
            margin: 0;
        }
        
        .category-option span {
            display: block;
            padding: 12px 15px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-weight: 500;
        }
        
        .category-option span:hover {
            background: #f0f0f0;
            border-color: #667eea;
            transform: translateY(-2px);
        }
        
        .category-option input:checked + span {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: #667eea;
            box-shadow: 0 4px 12px rgba(102,126,234,0.4);
        }





.out {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: Teal;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.2s ease;
    border: 1px solid black;
    cursor: pointer;
    font-weight:bold;
    color:white;
    font-size:16px;
}


@media (max-width: 767px) {
    .h {
        text-shadow: none !important;
    }
}


@media (max-width: 480px) {
    
    h1 {
        -webkit-text-stroke: 1px white; /* Tanji stroke na malim ekranima */
    }
    
   
}