/* TARGONIX EU Reverse Charge - Frontend Styles */

/* Reverse Charge Notice */
.targonix-reverse-charge-notice {
    background: #e7f7e7 !important;
    border-left: 4px solid #46b450 !important;
    color: #155724 !important;
    padding: 15px 20px !important;
    margin-bottom: 20px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 4px rgba(70, 180, 80, 0.1) !important;
    animation: slideInDown 0.3s ease-out;
}

.targonix-reverse-charge-notice svg {
    flex-shrink: 0 !important;
    color: #46b450 !important;
    width: 20px !important;
    height: 20px !important;
}

.targonix-reverse-charge-notice span {
    flex: 1 !important;
    line-height: 1.5 !important;
}

/* Animation for notice appearance */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .targonix-reverse-charge-notice {
        padding: 12px 15px !important;
        font-size: 13px !important;
        gap: 10px !important;
    }
    
    .targonix-reverse-charge-notice svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Dark mode support (if theme uses it) */
@media (prefers-color-scheme: dark) {
    .targonix-reverse-charge-notice {
        background: #1a4d1a !important;
        border-left-color: #5ec55e !important;
        color: #d4f4d4 !important;
    }
    
    .targonix-reverse-charge-notice svg {
        color: #5ec55e !important;
    }
}
