.map-wrapper {
    background-color: #2b2b2b;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin: 30px 0;
    width: 100%;
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 30%;
    border-radius: 8px;
}

.map-center {
    max-width: 80%;
    margin: 0 auto;
}


.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg);
}

.postcode {
    padding: 12px 15px;
    width: 100%;
    max-width: 300px;

    font-family: Dunbar, sans-serif;
    font-size: 16px;
    color: #f1f1f1;
    text-transform: uppercase;

    background-color: #2b2b2b;
    border: 1px solid #818181;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);

    transition: all 0.3s ease;
}

.postcode:focus {
    outline: none;
    border-color: #0291bd;
    box-shadow: 0 0 8px rgba(2, 145, 189, 0.6);
}

.postcode:invalid {
    border-color: #D30000;
}


.postcode::placeholder {
    color: #818181;
    opacity: 1;
}

.quote-button {
    display: inline-block;
    padding: 12px 24px;
    font-family: Dunbar, sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #74d3f1;
    background-color: transparent;
    border: 2px solid #74d3f1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-button:hover {
    background-color: #74d3f1;
    color: #2b2b2b;
    box-shadow: 0 0 10px rgba(116, 211, 241, 0.5);
}

@media (max-width: 992px) {
    .map-container {
        padding-top: 85%;
    }
    .map-wrapper {
        padding: 10px;
    }

    .map-center {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .map-container {
        padding-top: 100%;
    }
    .map-wrapper {
        padding: 10px;
    }

    .map-center {
        max-width: 95%;
    }
}
