/* WooCommerce Pincode Checker Styles - Version 1.4 */
.wpc-pincode-checker {
    margin: 15px 0;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-width: 100%;
}

.wpc-title {
    font-size: 1.2em;
    margin: 0 0 10px;
    color: #333;
}

#wpc-pincode-input {
    width: calc(100% - 100px);
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

#wpc-check-button {
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

#wpc-check-button:hover {
    background: #005177;
}

#wpc-result {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.wpc-nearby-pincode {
    color: #0073aa;
    text-decoration: none;
}

.wpc-nearby-pincode:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .wpc-pincode-checker {
        max-width: 100%;
    }
    #wpc-pincode-input {
        width: 100%;
        margin-bottom: 10px;
    }
    #wpc-check-button {
        width: 100%;
    }
}