
    .wc-frontend-coupon-creator {
        max-width: 1200px;
        margin: 20px auto;
        padding: 30px;
    }
    
    .coupon-form-section {
        margin-bottom: 50px;
        padding: 30px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #f9f9f9;
    }
    
    .coupons-table-section {
        padding: 30px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #f9f9f9;
    }
    
    .wc-coupon-form .form-section {
        margin-bottom: 30px;
        padding: 20px;
        background: white;
        border-radius: 5px;
        border: 1px solid #e1e1e1;
    }
    
    .wc-coupon-form .form-section h3 {
        margin-top: 0;
        color: #333;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    .wc-coupon-form .form-row {
        margin-bottom: 20px;
    }
    
    .wc-coupon-form label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        color: #333;
    }
    
    .wc-coupon-form input[type="text"],
    .wc-coupon-form input[type="number"],
    .wc-coupon-form input[type="date"],
    .wc-coupon-form select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }
    
    .wc-coupon-form input:focus,
    .wc-coupon-form select:focus {
        border-color: #007cba;
        box-shadow: 0 0 0 1px #007cba;
        outline: none;
    }
    
    .wc-coupon-form small {
        display: block;
        margin-top: 5px;
        color: #666;
        font-style: italic;
        font-size: 12px;
    }
    
    .wc-coupon-success {
        background: #d4edda;
        color: #155724;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
        border: 1px solid #c3e6cb;
    }
    
    .wc-coupon-error {
        background: #f8d7da;
        color: #721c24;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
        border: 1px solid #f5c6cb;
    }
    
    .submit-row {
        text-align: center;
        margin-top: 30px;
    }
    
    .wc-coupon-form .button-primary {
        background: #007cba;
        border-color: #007cba;
        color: white;
        padding: 12px 30px;
        font-size: 16px;
        height: auto;
    }
    
    .wc-coupon-form .button-primary:hover {
        background: #005a87;
        border-color: #005a87;
    }
    
    .select2-container--default .select2-selection--multiple {
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    
    /* Coupons Table Styles */
    .coupons-table-container {
        overflow-x: auto;
    }
    
    .wc-coupons-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .wc-coupons-table th {
        background: #007cba;
        color: white;
        padding: 12px 15px;
        text-align: left;
        font-weight: 600;
    }
    
    .wc-coupons-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #e1e1e1;
    }
    
    .wc-coupons-table tr:hover {
        background: #f8f9fa;
    }
    
    .wc-coupons-table .actions {
        white-space: nowrap;
    }
    
    .wc-coupons-table .button {
        padding: 6px 12px;
        font-size: 12px;
        margin-right: 5px;
    }
    
    .edit-coupon-btn {
        background: #28a745;
        border-color: #28a745;
        color: white;
    }
    
    .edit-coupon-btn:hover {
        background: #218838;
        border-color: #1e7e34;
        color: white;
    }
    
    .delete-coupon-btn {
        background: #dc3545;
        border-color: #dc3545;
        color: white;
    }
    
    .delete-coupon-btn:hover {
        background: #c82333;
        border-color: #bd2130;
        color: white;
    }
    
    .delete-coupon-form {
        display: inline-block;
        margin: 0;
    }
    