/* Affiliate Manager Frontend Styles */
.affiliate-link {
    position: relative;
    transition: all 0.3s ease;
}

.affiliate-link:hover {
    color: #0073aa;
    text-decoration: underline;
}

.affiliate-link::after {
    content: " ↗";
    font-size: 0.8em;
    opacity: 0.7;
}

/* 调试样式 */
.affiliate-debug {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 9999;
    max-width: 300px;
    max-height: 200px;
    overflow: auto;
}

.affiliate-debug h4 {
    margin: 0 0 5px 0;
    color: #4CAF50;
}

.affiliate-debug pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 10px;
}