.sx-postcode-checker-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.sx-postcode-search-container {
    margin-bottom: 30px;
}

.sx-search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

#sx-postcode-input {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    border-right: none;
}

#sx-search-button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

#sx-search-button:hover {
    background-color: #005177;
}

.sx-error-message {
    color: #d63638;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.sx-results-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.sx-map-container {
    flex: 1;
    min-width: 300px;
}

.sx-location-info-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#sx-location-info h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #23282d;
}

#sx-location-info p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.sx-cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.sx-cta-button:hover {
    background-color: #005177;
    color: white;
}

/* Info Window Styles */
.sx-info-window {
    min-width: 200px;
    padding: 10px;
}

.sx-info-window h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .sx-results-container {
        flex-direction: column;
    }
    
    .sx-map-container, .sx-location-info-container {
        width: 100%;
    }
}