.postal-code-indicator {
    z-index: 1000;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.postal-code-indicator strong {
    margin: 0 5px;
}

.postal-code-indicator button {
    font-size: 12px;
    padding: 0 5px;
    text-decoration: underline;
}

.postal-code-dropdown {
    position: absolute;
    left: -56px;
    top: 40px;
    min-width: 320px;
    z-index: 1000;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

@media (max-width: 1465px) {
    .postal-code-dropdown {
        left: -120px;
    }
}

@media (max-width: 1295px) {
    .postal-code-dropdown {
        top: 60px;
    }
}

@media (max-width: 850px) {
    .postal-code-dropdown {
        top: 80px;
    }
}

@media (max-width: 575px) {
    .postal-code-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding-right: 0 !important;
        display: flex;
        justify-content: center;
        background-color: #f8f9fa; /* Un fondo gris muy suave para diferenciarlo o blanco si prefieres */
        padding-bottom: 5px;
        z-index: 900;
    }

    .postal-code-indicator {
        display: flex !important;
        justify-content: center;
        width: auto;
    }

    .postal-code-dropdown {
        transform: translateX(18%);
        top: 40px;
        max-width: 90vw;
    }
}