.trustlex-reviews-ticker-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-align: left;
}

.trustlex-review-display {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.trustlex-review-display.fade-out {
    opacity: 0;
}

.trustlex-review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.trustlex-review-author {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.trustlex-verified-icon {
    flex-shrink: 0;
    color: #419073;
}

.trustlex-verified-text {
    font-size: 10px;
    color: #419073;
    font-weight: 500;
}

.trustlex-review-text {
    font-size: 12px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
    margin: 0;
    margin-bottom: -5px; /* Styling Fix */
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .trustlex-review-header {
        gap: 6px;
        margin-bottom: 6px;
    }
    
    .trustlex-review-author {
        font-size: 13px;
    }
    
    .trustlex-verified-icon {
        width: 12px;
        height: 12px;
    }
    
    .trustlex-verified-text {
        font-size: 12px;
    }
    
    .trustlex-review-text {
        font-size: 13px;
    }
} 