/* Checkout coupon form styles */
.checkout_coupon {
    display: block !important;
    margin-top: 15px;
}

.checkout_coupon p:first-of-type {
    display: none; /* Hide "If you have a coupon code..." text */
}

.checkout_coupon .form-row-first,
.checkout_coupon .form-row-last {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
}

.checkout_coupon .form-row-first {
    width: 65%;
    margin-right: 2%;
}

.checkout_coupon .form-row-last {
    width: 30%;
}

.checkout_coupon input[type="text"] {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkout_coupon button {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.checkout_coupon button:hover {
    background: #555;
}

.checkout_coupon .clear {
    display: none; /* Remove the clear div since we want inline layout */
} 