/**
 * couponmaster Admin Styles
 *
 * @package couponmaster
 * @since 1.0.0
 */

/* Dashboard Stats */
.couponmaster-dashboard {
    margin-top: 20px;
}

.couponmaster-stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.couponmaster-stat-box {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    flex: 1;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.couponmaster-stat-box h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.couponmaster-stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #2271b1;
    margin: 0;
}

.couponmaster-quick-actions {
    margin-top: 20px;
}

/* Coupons List Table */
.couponmaster-status-active {
    color: #00a32a;
    font-weight: 600;
}

.couponmaster-status-inactive {
    color: #d63638;
    font-weight: 600;
}

/* Coupon Form */
#couponmaster-coupon-form .form-table th {
    width: 200px;
}

#couponmaster-generate-code {
    margin-left: 10px;
}

#discount_value_suffix {
    margin-left: 5px;
    font-weight: 600;
}

/* Loading States */
.couponmaster-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Feature Badge */
.couponmaster-pro-badge {
    display: inline-block;
    background: #2271b1;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    text-transform: uppercase;
    vertical-align: middle;
}

/* Upgrade Page */
.couponmaster-upgrade-page {
    margin-top: 20px;
}

.couponmaster-upgrade-box {
    text-align: center;
}

.couponmaster-pro-features ul li:last-child {
    border-bottom: none !important;
}

