/* Reset and base styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
*/

header {
    text-align: center;
    margin-bottom: 0px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
    color: #2c3e50;
    margin: 10px;
    padding: 10px;
}
/*

header p {
    color: #666;
} */

/* Search section styles */
.search-section {
    margin-bottom: 10px;
}

#searchForm {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    flex: 1;
}

#streetInput {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#streetInput:focus {
    outline: none;
    border-color: #3498db;
}

/* Autosuggest styles */
.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

button {
    padding: 12px 25px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

/* Results section styles */
.results-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.no-results {
    text-align: center;
    color: #666;
    padding: 10px;
}

.results-content {
    padding: 0;
}

.results-content h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.mz-result {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.mz-result:last-child {
    margin-bottom: 0;
}

.mz-result h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.result-details {
    padding: 15px;
    background-color: #fff;
    border-radius: 6px;
}

.result-details h4 {
    color: #34495e;
    margin: 15px 0 10px;
}

.result-details h4:first-child {
    margin-top: 0;
}

.result-details p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

/* JSON Preview styles */
.post__entry h2 {
    padding-top: 0;
}
.json-preview {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.json-preview h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.json-content {
    padding: 15px;
}

.mz-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.mz-item h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.mz-item p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.mz-item .ulice-list {
    margin-top: 10px;
    padding-left: 20px;
}

/* Footer styles */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    #searchForm {
        flex-direction: column;
    }

    button {
        width: 100%;
    }

    .suggestions-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 50vh;
        border-radius: 12px 12px 0 0;
    }
} 