/* WooCommerce Advanced Pricing - Frontend Styles */

/* Banned User Modal */
.wc-adv-pricing-banned-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-adv-pricing-banned-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    text-align: center;
}

.wc-adv-pricing-banned-content img {
    width: 250px;
    height: auto;
    margin-bottom: 2rem;
}

.wc-adv-pricing-banned-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

.wc-adv-pricing-banned-content .button {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s;
}

.wc-adv-pricing-banned-content .button:hover {
    background: #005a87;
    color: #fff;
}

/* Registration Fields */
#reseller_fields {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 10px 0;
}

#reseller_fields em {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.woocommerce-form-row label a {
    color: #0073aa;
    text-decoration: underline;
}

.woocommerce-form-row label a:hover {
    color: #005a87;
}

/* Account Suspended Notice */
.wc-account-suspended-notice {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.wc-account-suspended-notice p {
    margin: 0;
    color: #721c24;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-adv-pricing-banned-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .wc-adv-pricing-banned-content img {
        width: 200px;
    }
}
