body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #007bff;
}

button {
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

#map-container {
    width: 100%;
    height: 500px;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.html-generator {
    margin-top: 2rem;
    text-align: center;
}

.generate-btn {
    margin: 1rem 0;
}

.code-container {
    margin-top: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 1rem;
    position: relative;
}

.code-container pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: left;
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
}

.copy-btn {
    margin-top: 1rem;
    background-color: #28a745;
}

.copy-btn:hover {
    background-color: #218838;
}

.copy-message {
    display: none;
    color: #28a745;
    margin-left: 10px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .input-container {
        flex-direction: column;
    }
    
    button {
        width: 100%;
    }
    
    .container {
        padding: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    margin-top: 60px;
}

.site-footer .container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-text {
    flex: 1;
    text-align: center;
    color: #333;
    font-weight: bold;
}

.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-contact a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Isključivo za mobilne uređaje */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-text, .footer-contact {
        width: 100%;
        text-align: center;
    }
} 