/* ========================================
   WESTARP DIGITAL PRODUCTS - STYLES
   E-Book Reader & Audio Player Buttons
   ======================================== */

/* My Account Downloads - Custom Actions */
.woocommerce-account .woocommerce-MyAccount-downloads {
    overflow-x: auto;
}

.woocommerce-account .woocommerce-MyAccount-downloads table {
    min-width: 800px;
}

/* Action Buttons */
.westarp-read-online,
.westarp-play-online {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
    margin: 2px;
}

.westarp-read-online {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    border: none !important;
}

.westarp-read-online:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a408f 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;
}

.westarp-play-online {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
    color: #fff !important;
    border: none !important;
}

.westarp-play-online:hover {
    background: linear-gradient(135deg, #e082ea 0%, #e4465b 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.4) !important;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-downloads table {
        font-size: 12px;
    }
    
    .westarp-read-online,
    .westarp-play-online {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    .woocommerce-MyAccount-downloads-column--westarp_actions {
        min-width: 150px;
    }
}

/* Product Edit Meta Box Styles */
.westarp-digital-settings {
    padding: 10px 0;
}

.westarp-digital-settings label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.westarp-digital-settings input[type="checkbox"] {
    margin-right: 5px;
}

.westarp-digital-settings select {
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.westarp-digital-settings select[multiple] {
    font-size: 12px;
    line-height: 1.4;
}

.westarp-digital-settings select[multiple] option {
    padding: 4px;
}

/* Geo-Blocking Info Box */
.westarp-digital-settings p[style*="background"] {
    margin-top: 10px !important;
}

/* Admin Notice for Digital Products */
.westarp-digital-notice {
    background: #e7f3ff;
    border-left: 4px solid #2271b1;
    padding: 12px;
    margin: 10px 0;
}

.westarp-digital-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

/* Downloads Table - Better spacing */
.woocommerce-MyAccount-downloads td {
    vertical-align: middle !important;
    padding: 12px 8px !important;
}

.woocommerce-MyAccount-downloads .woocommerce-MyAccount-downloads-column--westarp_actions {
    text-align: center;
}

/* Loading State */
.westarp-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Error Messages */
.westarp-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

/* Success Messages */
.westarp-success {
    background: #efe;
    border: 1px solid #cfc;
    color: #060;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}


