/**
 * Transaction Validation - Fraud Mitigation Inline Styles
 * Extracted from PHP templates for proper WordPress enqueuing
 */

/* Spinner animation for loading state */
@keyframes tvfm-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tab menu styles */
.tvfm-tabs-container {
    display: flex;
    gap: 5px;
}

.tvfm-tab-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #001E69;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.tvfm-tab-link .dashicons {
    color: #A2C839;
    font-size: 18px;
}

.tvfm-tab-link:hover {
    background: #f0f6fc;
    color: #001E69;
}

.tvfm-tab-link.active {
    background: linear-gradient(135deg, #001E69 0%, #0039b3 100%);
    color: #fff;
}

.tvfm-tab-link.active .dashicons {
    color: #A2C839;
}

/* Tab content visibility */
.tvfm-tab-content {
    display: none;
}

.tvfm-tab-content.active {
    display: block;
}