/* ARCSC Chatbot Frontend Styles */

.wc-chatbot-checkout-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wc-chatbot-checkout-notice h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.wc-chatbot-checkout-notice p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.wc-chatbot-checkout-notice .notice-actions {
    margin-top: 15px;
}

.wc-chatbot-checkout-notice .notice-actions a {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.wc-chatbot-checkout-notice .notice-actions a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Auto-login success message */
.wc-chatbot-auto-login-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .wc-chatbot-checkout-notice {
        margin: 10px;
        padding: 15px;
    }
    
    .wc-chatbot-checkout-notice h3 {
        font-size: 16px;
    }
    
    .wc-chatbot-checkout-notice p {
        font-size: 13px;
    }
    
    .wc-chatbot-checkout-notice .notice-actions a {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .wc-chatbot-auto-login-success {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 15px;
    }
}