/* Style the dropdown container */
.woocommerce-page .buy-from-usa-module .buy-from-usa {
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}

/* Style the button */
.woocommerce-page .buy-from-usa-module .buy-from-usa button.buy-from-usa-button {
    margin-bottom: 0;
    color: white;
    border: 2px solid #4581a5;
    background: #4581a5;
    cursor: pointer;
    font-family: 'Gidole',Helvetica,Arial,Lucida,sans-serif;
}

button.buy-from-usa-button .down-arrow {
    margin-left: 8px;
    font-size: 1.2em;
    pointer-events: none; /* allow element below to be clicked */
}

.woocommerce-page .buy-from-usa-module p:empty {
  display: none;
}

/* Style the dropdown content (hidden by default) */
.buy-from-usa .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f2f2f2;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Style the dropdown links */
.buy-from-usa .dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

/* Change color on hover */
.buy-from-usa .dropdown-content a:hover {
    background-color: #ddd;
    cursor: pointer;
}

/* add space under non purchasable message to avoid it being squashed */
.woocommerce-page .npwpMessage {
    margin-bottom: 2em;
    margin-top: 2em;
}