.wpwc-map-wrapper {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}

.wpwc-map-wrapper p {
    margin-bottom: 0;
}

#wpwc-directions-map {
    width: 100%;
    height: 360px;
    background-color: #f2f8fd;
}

.wpwc-map-preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s ease-in-out;
}

.wpwc-map-spinner {
    border: 4px solid #f2f8fd;
    border-top: 4px solid #D61C3B;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

