.wc-shipping-rates-wrapper {
    margin-top: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wc-shipping-rates-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wc-shipping-rate {
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
    color: #333 !important;
}

.shipping-rate-label {
    color: #187815 !important;
    font-weight: normal;
    display: inline;
}

.rate-cost,
.delivery-time {
    color: #333 !important;
    font-weight: normal;
    display: inline;
}

/* Novas correções adicionadas */
div#wc-shipping-sim-form-title {
    font-family: 'Poppins';
    font-size: 15px;
    color: black;
    font-weight: 300;
    padding-bottom: 8px;
}

div#wc-shipping-sim-form-fields {
    font-family: 'Poppins';
    font-size: 14px;
}

button.button.submit {
    background: #803280;
    color: white;
    font-weight: 300;
    border-radius: 5px !important;
}

button.button.submit:hover {
    background: #6F256F;
    color: white;
}

input.input-text.input-postcode {
    border-radius: 5px !important;
}

div#wc-shipping-sim-br-cep-finder {
    color: #803280 !important;
    font-size: 12px;
    font-weight: 700;
}

#wc-shipping-sim {
    padding: 0px !important;
    border-top: none;
}

div#wc-shipping-sim-results-title {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 15px;
}

div#wc-shipping-sim-results-after {
    font-family: 'Poppins';
    font-size: 15px;
}

tr.shipping-rate-method-local_pickup {
    font-family: 'Poppins';
    font-size: 15px;
    background: #ffffff !important;
}

span.shipping-rate-label {
    font-size: 15px !important;
    font-weight: 400 !important;
    font-family: 'Poppins' !important;
}

/* Centralizar o spinner de carregamento */
button.button.submit.loading {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    text-align: center !important;
}

button.button.submit.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
