/* Gift Purchase Fields */
#gift-recipient-fields {
    background: #f8f8f8;
    padding: 1.5em;
    margin: 2em 0;
    border: 1px solid #d3ced2;
    border-radius: 5px;
    clear: both;
}

#gift-recipient-fields h3 {
    margin: 0 0 1em 0;
    color: #333;
    font-size: 1.25em;
    font-weight: 600;
}

.gift-recipient-details {
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid #e0e0e0;
}

#recipient-verification-result {
    margin: 1em 0 0 0;
}

/* Message styles matching WooCommerce */
#recipient-verification-result .woocommerce-message {
    margin: 0;
    padding: 1em 1.5em;
    border-left: none;
    list-style: none;
}

#recipient-verification-result .woocommerce-error {
    background-color: #f8e8e8;
    border: 1px solid #e8baba;
    color: #e2401c;
}

#recipient-verification-result .woocommerce-info {
    background-color: #f0f6ff;
    border: 1px solid #d0e0ff;
    color: #1e85be;
}

#recipient-verification-result .woocommerce-success {
    background-color: #f5faf7;
    border: 1px solid #c8d7e1;
    color: #0f834d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #gift-recipient-fields {
        padding: 1em;
        margin: 1.5em 0;
    }
    
    .gift-recipient-details {
        margin-top: 1em;
        padding-top: 1em;
    }
}